| | |
| | | import cn.lihu.jh.framework.mybatis.core.query.LambdaQueryWrapperX; |
| | | import cn.lihu.jh.framework.mybatis.core.mapper.BaseMapperX; |
| | | import cn.lihu.jh.module.ecg.dal.dataobject.checktype.CheckTypeDO; |
| | | import cn.lihu.jh.module.ecg.dal.dataobject.room.RoomDO; |
| | | import cn.lihu.jh.module.ecg.enums.BedStatusEnum; |
| | | import org.apache.ibatis.annotations.*; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import cn.lihu.jh.module.ecg.controller.admin.checktype.vo.*; |
| | | import org.apache.ibatis.annotations.Select; |
| | | |
| | | /** |
| | | * 检查类型 Mapper |
| | |
| | | .eqIfPresent(CheckTypeDO::getReadyNum, reqVO.getReadyNum()) |
| | | .betweenIfPresent(CheckTypeDO::getCreateTime, reqVO.getCreateTime()) |
| | | .eqIfPresent(CheckTypeDO::getNeedDevReady, reqVO.getNeedDevReady()) |
| | | .eqIfPresent(CheckTypeDO::getCallingColumn, reqVO.getCallingColumn()) |
| | | .eqIfPresent(CheckTypeDO::getDisplayBarcode, reqVO.getDisplayBarcode()) |
| | | .eqIfPresent(CheckTypeDO::getExpenseRecognition, reqVO.getExpenseRecognition()) |
| | | .eqIfPresent(CheckTypeDO::getTimeslotBookNum, reqVO.getTimeslotBookNum()) |
| | | .eqIfPresent(CheckTypeDO::getTimeslotReservedNum, reqVO.getTimeslotReservedNum()) |
| | | .eqIfPresent(CheckTypeDO::getAffinityCheckTypes, reqVO.getAffinityCheckTypes()) |
| | | .orderByDesc(CheckTypeDO::getId)); |
| | | } |
| | | |