1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.dsh.other.service;
|
| import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.dsh.other.entity.OperatorUser;
|
|
| import java.util.List;
| import java.util.Map;
|
| /**
| * 运营商商户 服务类
| */
| public interface IOperatorUserService extends IService<OperatorUser> {
|
|
| String getmerchantNumberByOperatorId(Integer operatorId);
|
| }
|
|