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
| package com.dsh.other.service.impl;
|
| import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
| import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
| import com.dsh.other.entity.OperatorUser;
| import com.dsh.other.mapper.TOperatorUserMapper;
| import com.dsh.other.service.IOperatorUserService;
| import org.springframework.stereotype.Service;
|
| import java.util.List;
| import java.util.Map;
|
| /**
| * <p>
| * 学员信息 服务实现类
| * </p>
| *
| * @author stylefeng
| * @since 2023-09-12
| */
| @Service
| public class TOperatorUserServiceImpl extends ServiceImpl<TOperatorUserMapper, OperatorUser> implements IOperatorUserService {
|
| @Override
| public List<Map<String, Object>> listAll(Page<Map<String, Object>> page, String province, String city, String userName, String phone, Integer platform, Integer type, Integer state) {
| return this.baseMapper.listAll(page, province, city, userName, phone, platform, type, state);
| }
| }
|
|