| | |
| | | @Repository |
| | | public interface EquipmentInfoMapper extends BaseMapper<EquipmentInfo> { |
| | | |
| | | List<EquipmentInfo> selectDataGrid(Page<EquipmentInfo> page, Map<String, Object> condition); |
| | | List<EquipmentInfo> selectDataGrid(@Param("page") Page<EquipmentInfo> page,@Param("condition") Map<String, Object> condition); |
| | | |
| | | EquipmentInfo selectExistByNumber(@Param("id") Long id,@Param("number") String number); |
| | | |
| | |
| | | |
| | | List<EquipmentInfo> selectByTask(@Param("taskcode") String taskcode); |
| | | |
| | | List<EquipmentInfo> selectByTaskAndWorker(@Param("code")String code, @Param("worker")String worker); |
| | | List<EquipmentInfo> selectByTaskAndWorker(@Param("code")String code, @Param("worker") String worker); |
| | | |
| | | List<EquipmentInfo> selectUsingByTask(@Param("code") String code); |
| | | } |