| | |
| | | import org.jeecg.common.constant.CommonConstant; |
| | | import org.jeecg.common.system.base.controller.JeecgController; |
| | | import org.jeecg.common.system.vo.LoginUser; |
| | | import org.jeecg.modules.mdc.dto.MdcEquipmentDto; |
| | | import org.jeecg.modules.mdc.entity.MdcEquipment; |
| | | import org.jeecg.modules.mdc.entity.MdcEquipmentMonitor; |
| | | import org.jeecg.modules.mdc.model.MdcEquipmentTree; |
| | |
| | | } |
| | | |
| | | /** |
| | | * 根据用户查询设备列表信息 |
| | | */ |
| | | @AutoLog(value = "设备表-根据用户查询设备列表信息") |
| | | @ApiOperation(value = "设备表-根据用户查询设备列表信息", notes = "设备表-根据用户查询设备列表信息") |
| | | @GetMapping(value = "/getEquipmentList") |
| | | public Result<List<MdcEquipment>> getEquipmentList() { |
| | | List<MdcEquipment> list = mdcEquipmentService.getEquipmentList(); |
| | | return Result.OK(list); |
| | | } |
| | | |
| | | /** |
| | | * 设备监控列表 |
| | | */ |
| | | @AutoLog(value = "设备表-设备监控列表") |