package cn.gistack.sm.intelligentCall.service.impl;
|
|
import cn.gistack.sm.intelligentCall.entity.CallNotFillRecord;
|
import cn.gistack.sm.intelligentCall.mapper.CallNotFillRecordMapper;
|
import cn.gistack.sm.intelligentCall.service.ICallNotFillRecordService;
|
import cn.gistack.sm.intelligentCall.vo.CallNotFillRecordVO;
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* @author zhongrj
|
* @date 2023-06-13
|
*/
|
@Service
|
public class CallNotFillRecordServiceImpl extends ServiceImpl<CallNotFillRecordMapper, CallNotFillRecord> implements ICallNotFillRecordService{
|
|
/**
|
* 自定义分页列表查询
|
* @param page
|
* @param callNotFillRecord
|
* @return
|
*/
|
@Override
|
public IPage<CallNotFillRecordVO> selectCallNotFillRecordPage(IPage<CallNotFillRecordVO> page, CallNotFillRecordVO callNotFillRecord) {
|
return page.setRecords(baseMapper.selectCallNotFillRecordPage(page,callNotFillRecord));
|
}
|
}
|