Lius
2024-12-02 2dcd7f3634f2e636e10ea758441ded77e1d2c845
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
package org.jeecg.modules.mdc.mapper;
 
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import org.apache.ibatis.annotations.Param;
import org.jeecg.modules.mdc.entity.MdcPlanClose;
import org.jeecg.modules.mdc.vo.MdcPlanCloseVo;
 
/**
 * @Description: mdc计划停机维护表
 * @Author: Lius
 * @Date: 2023-07-13
 * @Version: V1.0
 */
public interface MdcPlanCloseMapper extends BaseMapper<MdcPlanClose> {
 
    /**
     * 分页查询
     *
     * @param page
     * @param mdcPlanClose
     * @return
     */
    IPage<MdcPlanClose> pageList(Page<MdcPlanClose> page, @Param("mdcPlanClose") MdcPlanCloseVo mdcPlanClose);
}