| | |
| | | public interface DeviceMapper extends BaseMapper<Device> { |
| | | |
| | | IPage<Device> selectDeviceParameter(Page page, QueryWrapper<Device> ew); |
| | | List<Device> selectEquipmentOverview(Page page, QueryWrapper<Device> ew); |
| | | |
| | | List<Device> selectEquipmentOverview(); |
| | | //更新 |
| | | int upDeviceParameter(Device itemParameter); |
| | | |
| | | List<Device> authorizedPerson(); |
| | | |
| | | //查询 |
| | | List<Device> search(@Param(value = "status") Integer status, @Param(value = "deviceName") String deviceName, |
| | | @Param(value = "specificationModel") String specificationModel, @Param(value = "largeCategory") String largeCategory); |
| | | |
| | | //获取图片数据 |
| | | void selectDeviceImage(@Param(value = "name") String name ,@Param(value = "id") Integer id); |
| | | |
| | | //查询设备负责人 |
| | | List<Device> selectDevicePrincipal(); |
| | | } |
| | | |