| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.dsh.guns.core.dataScope.DataScope; |
| | | import com.dsh.guns.modular.system.model.MgtShopAuthDto; |
| | | import com.dsh.guns.modular.system.model.OperatorUser; |
| | | import com.dsh.guns.modular.system.model.OperatorUserVO; |
| | | import com.dsh.guns.modular.system.model.User; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | |
| | | */ |
| | | public interface IOperatorUserService extends IService<OperatorUser> { |
| | | |
| | | List<Map<String, Object>> listAll(Page<Map<String, Object>> page, String province, String city, String userName, String phone, Integer platform, Integer type, Integer state); |
| | | |
| | | /** |
| | | * @description 商户进件 |
| | | * @author jqs |
| | | * @date 2023/6/19 11:02 |
| | | * @param mgtShopAuthDto |
| | | * @return void |
| | | */ |
| | | void mgtShopAuth(MgtShopAuthDto mgtShopAuthDto); |
| | | |
| | | List<OperatorUserVO> listAll(String province, String city, String userName, String phone, Integer platform, Integer type, Integer state); |
| | | } |