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 接口 *

*/ public interface TOperatorUserMapper extends BaseMapper { List> listAll(@Param("page") Page> 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); }