| | |
| | | import cn.lihu.jh.module.ecg.dal.dataobject.checktype.CheckTypeDO; |
| | | 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)); |
| | | } |
| | | |
| | | @Select("<script> " + |
| | | "SELECT * FROM lihu.check_type;" + |
| | | "</script>") |
| | | List<CheckTypeDO> simpleCheckTypeList(); |
| | | |
| | | } |