xieb
2023-07-21 2f8838d281c9773e8f10610bf034f44d2fff2e69
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
28
29
30
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));
    }
 
    @Override
    public SchedulingRecordVO customizeGetDetail(SchedulingRecordVO schedulingRecordVO) {
        return baseMapper.customizeGetDetail(schedulingRecordVO);
    }
}