44323
2023-11-27 aa925d851857f50eff0556411366690d9a78a0e5
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
package com.dsh.other.mapper;
 
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.dsh.other.entity.OperatorUser;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
import java.util.Map;
 
/**
 * 运营商商户 Mapper 接口
 * </p>
 */
public interface TOperatorUserMapper extends BaseMapper<OperatorUser> {
 
    List<Map<String, Object>> listAll(@Param("page") Page<Map<String, Object>> page,
                                      @Param("province") String province,
                                      @Param("city") String city,
                                      @Param("userName") String userName,
                                      @Param("phone") String phone,
                                      @Param("platform") Integer platform,
                                      @Param("type") Integer type,
                                      @Param("state") Integer state);
 
}