1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.ruoyi.account.api.dto;
|
| import com.ruoyi.common.core.web.page.BasePage;
| import lombok.Data;
|
| @Data
| public class UserListQueryDto extends BasePage {
| String userPhone;
| String cityCode;
| Integer status;
| Integer userTagId;
| Integer vipTypeId;
| Integer companyId;
| }
|
|