| | |
| | | import org.jeecg.modules.mdc.entity.MdcDowntime; |
| | | import org.jeecg.modules.mdc.vo.MdcDowntimeVo; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @Description: 待机停机表 |
| | | * @Author: lius |
| | |
| | | public interface MdcDowntimeMapper extends BaseMapper<MdcDowntime> { |
| | | |
| | | IPage<MdcDowntimeDto> pageList(Page<MdcDowntimeDto> page, @Param("mdcDowntimeVo") MdcDowntimeVo mdcDowntimeVo); |
| | | |
| | | List<MdcDowntime> findPlanTimeDuration(@Param("equipmentId") String equipmentId, @Param("validDate") String validDate, @Param("closeType") String closeType); |
| | | } |