src/main/java/com/whyc/mapper/DeviceMaintainMapper.java
@@ -1,6 +1,14 @@ package com.whyc.mapper; import com.whyc.dto.DeviceMaintainDTO; import com.whyc.pojo.DeviceMaintain; import java.util.List; public interface DeviceMaintainMapper extends CustomMapper<DeviceMaintain> { List<DeviceMaintain> getPageByCondition(DeviceMaintainDTO maintainDTO); DeviceMaintain get(Integer deviceId); List<DeviceMaintain> getPageByCondition2(DeviceMaintainDTO maintainDTO); }