|  |  | 
 |  |  | import cn.lihu.jh.module.ecg.dal.dataobject.devmanage.DeviceDO; | 
 |  |  | import cn.lihu.jh.module.ecg.dal.dataobject.devmanage.DeviceStatisticDO; | 
 |  |  | import cn.lihu.jh.module.ecg.dal.dataobject.jobrecord.JobRecordStatisticDO; | 
 |  |  | import org.apache.ibatis.annotations.Mapper; | 
 |  |  | import org.apache.ibatis.annotations.*; | 
 |  |  | import cn.lihu.jh.module.ecg.controller.admin.devmanage.vo.*; | 
 |  |  | import org.apache.ibatis.annotations.Param; | 
 |  |  | import org.apache.ibatis.annotations.Select; | 
 |  |  | import org.apache.ibatis.annotations.Update; | 
 |  |  |  | 
 |  |  | /** | 
 |  |  |  * 设备 Mapper | 
 |  |  | 
 |  |  |     default PageResult<DeviceDO> selectPage(DevicePageReqVO reqVO) { | 
 |  |  |         return selectPage(reqVO, new LambdaQueryWrapperX<DeviceDO>() | 
 |  |  |                 .eqIfPresent(DeviceDO::getDevId, reqVO.getDevId()) | 
 |  |  |                 .eqIfPresent(DeviceDO::getState, reqVO.getState()) | 
 |  |  |                 .eqIfPresent(DeviceDO::getDevCodeIntrinsic, reqVO.getDevCodeIntrinsic()) | 
 |  |  |                 .eqIfPresent(DeviceDO::getDevCodeHosp, reqVO.getDevCodeHosp()) | 
 |  |  |                 .eqIfPresent(DeviceDO::getDevCodeDept, reqVO.getDevCodeDept()) | 
 |  |  |                 .inIfPresent(DeviceDO::getState, reqVO.getState()) | 
 |  |  |                 .eqIfPresent(DeviceDO::getCategory, reqVO.getCategory()) | 
 |  |  |                 .eqIfPresent(DeviceDO::getBrand, reqVO.getBrand()) | 
 |  |  |                 .eqIfPresent(DeviceDO::getModel, reqVO.getModel()) | 
 |  |  |                 .betweenIfPresent(DeviceDO::getPurchaseDate, reqVO.getPurchaseDate()) | 
 |  |  |                 .betweenIfPresent(DeviceDO::getCreateTime, reqVO.getCreateTime()) | 
 |  |  |                 .orderByDesc(DeviceDO::getId)); | 
 |  |  |                 .orderByAsc(DeviceDO::getDevId)); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     @Select("select * from lihu.device where dev_id=#{devId}") | 
 |  |  |     @Results({ | 
 |  |  |             @Result(property = "patDetails", column = "pat_details", typeHandler=com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler.class) | 
 |  |  |     }) | 
 |  |  |     DeviceDO getDeviceByDevId(@Param("devId") String devId); | 
 |  |  |  | 
 |  |  |     @Update("update lihu.device set state=#{state}, state_date=#{stateDate} where dev_id=#{devId}") | 
 |  |  |     Integer updateDevState(@Param("devId") String devId, @Param("state") Integer state, @Param("stateDate") LocalDate stateDate); | 
 |  |  |     @Update("update lihu.device set state=#{state}, state_date=#{stateDate}, comment=#{comment} where dev_id=#{devId}") | 
 |  |  |     Integer updateDevState(@Param("devId") String devId, @Param("state") Integer state, @Param("stateDate") LocalDate stateDate, @Param("comment") String comment); | 
 |  |  |  | 
 |  |  |     @Select("<script>" + | 
 |  |  |             "select category, state, count(1) as dev_count from lihu.device " + |