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
22
23
24
25
package cn.gistack.sm.schedulingModules.service.impl;
 
 
import cn.gistack.sm.schedulingModules.entity.SchedulingRecord;
import cn.gistack.sm.schedulingModules.mapper.SchedulingRecordMapper;
import cn.gistack.sm.schedulingModules.service.ISchedulingRecordService;
import cn.gistack.sm.schedulingModules.vo.SchedulingRecordVO;
import com.baomidou.mybatisplus.core.metadata.IPage;
import org.springblade.core.mp.base.BaseServiceImpl;
import org.springframework.stereotype.Service;
 
/**
 * @PROJECT_NAME: skjcmanager
 * @DESCRIPTION:
 * @USER: guoshilong
 * @DATE: 2023/5/27 15:25
 */
@Service
public class SchedulingRecordServiceImpl extends BaseServiceImpl<SchedulingRecordMapper, SchedulingRecord> implements ISchedulingRecordService {
 
    @Override
    public IPage<SchedulingRecordVO> selectPage(IPage<SchedulingRecordVO> page, SchedulingRecordVO schedulingRecordVO) {
        return page.setRecords(baseMapper.selectRecordPage(page,schedulingRecordVO));
    }
}