guoshilong
2023-05-27 54475b8ff3450db9b78af994a5046279621321df
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package cn.gistack.sm.schedulingModules.mapper;
 
import cn.gistack.sm.manageProtect.entity.ManageProtectRecord;
import cn.gistack.sm.manageProtect.vo.ManageProtectRecordVO;
import cn.gistack.sm.schedulingModules.entity.SchedulingRecord;
import cn.gistack.sm.schedulingModules.vo.SchedulingRecordVO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import org.apache.ibatis.annotations.Param;
 
/**
 * @PROJECT_NAME: skjcmanager
 * @DESCRIPTION:
 * @USER: guoshilong
 * @DATE: 2023/5/27 15:25
 */
public interface SchedulingRecordMapper extends BaseMapper<SchedulingRecord> {
    IPage<SchedulingRecordVO> selectRecordPage(IPage<SchedulingRecordVO> page, @Param("record") SchedulingRecordVO schedulingRecordVO);
}