| | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.jeecg.modules.board.vo.EquDowntimeInfo; |
| | | import org.jeecg.modules.mdc.dto.MdcDowntimeDto; |
| | | import org.jeecg.modules.mdc.entity.MdcDowntime; |
| | | import org.jeecg.modules.mdc.vo.MdcDowntimeVo; |
| | | |
| | | import javax.servlet.http.HttpServletRequest; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @Description: 待机停机表 |
| | |
| | | * @return |
| | | */ |
| | | IPage<MdcDowntimeDto> pageList(String userId, Page<MdcDowntimeDto> page, MdcDowntimeVo mdcDowntimeVo, HttpServletRequest req); |
| | | |
| | | /** |
| | | * 查询停机时长 |
| | | * @param equipmentId |
| | | * @param validDate |
| | | * @param closeType |
| | | * @return |
| | | */ |
| | | Integer findPlanTimeDuration(String equipmentId, String validDate, String closeType); |
| | | |
| | | List<EquDowntimeInfo> equDowntimeStatistics(List<String> equipmentIdList, String start, String end); |
| | | } |