guoshilong
2023-05-29 bbfcbea1c54d344b6f9efa87f68354659faf3419
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;
 
import java.util.List;
 
/**
 * @PROJECT_NAME: skjcmanager
 * @DESCRIPTION:
 * @USER: guoshilong
 * @DATE: 2023/5/27 15:25
 */
public interface SchedulingRecordMapper extends BaseMapper<SchedulingRecord> {
    List<SchedulingRecordVO> selectRecordPage(IPage<SchedulingRecordVO> page, @Param("record") SchedulingRecordVO schedulingRecordVO);
}