lius
2023-06-08 534aec7a687ceca8120ba798ad20d80d7058ffe6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package org.jeecg.modules.mdc.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import org.jeecg.modules.mdc.entity.MdcDeviceCalendar;
import com.baomidou.mybatisplus.extension.service.IService;
import org.jeecg.modules.mdc.vo.EquipmentCalendarVo;
import org.jeecg.modules.mdc.vo.MdcDeviceCalendarQueryVo;
import org.jeecg.modules.mdc.vo.MdcDeviceCalendarVo;
 
import javax.servlet.http.HttpServletRequest;
 
/**
 * @Description: 设备工作日历表
 * @Author: jeecg-boot
 * @Date:   2023-04-10
 * @Version: V1.0
 */
public interface IMdcDeviceCalendarService extends IService<MdcDeviceCalendar> {
 
    /**
     * 分页列表查询
     */
    IPage<MdcDeviceCalendarVo> pageList(String userId, MdcDeviceCalendarQueryVo mdcDeviceCalendarQueryVo, Integer pageNo, Integer pageSize, HttpServletRequest req);
 
    /**
     * 配置设备工作班制班次
     */
    boolean saveCalendar(EquipmentCalendarVo calendarVo);
 
}