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);
|
}
|