中扬CRM客户关系管理系统
#
LSH
2023-11-09 58673ca240945a1d3719b4429119570817944b40
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 com.zy.crm.manager.service.impl;
 
import com.baomidou.mybatisplus.plugins.Page;
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.zy.crm.manager.entity.PriOnline2;
import com.zy.crm.manager.mapper.PriOnline2Mapper;
import com.zy.crm.manager.service.PriOnline2Service;
import org.springframework.stereotype.Service;
 
import java.util.ArrayList;
import java.util.List;
 
@Service("priOnline2Service")
public class PriOnline2ServiceImpl extends ServiceImpl<PriOnline2Mapper, PriOnline2> implements PriOnline2Service {
 
    @Override
    public Page<PriOnline2> listByPage(Page<PriOnline2> page, ArrayList<Long> userIds, String condition) {
        return page.setRecords(this.baseMapper.listByPage(page, userIds, condition));
    }
 
    @Override
    public List<PriOnline2> listByAll(Long userId) {
        return this.baseMapper.listByAll(userId);
    }
 
    @Override
    public Integer listByAllTotal(Long userId) {
        return this.baseMapper.listByAllTotal(userId);
    }
}