package com.ruoyi.account.api.dto;
|
|
import com.ruoyi.common.core.web.page.BasePage;
|
import lombok.Data;
|
|
@Data
|
public class UserListQueryDto extends BasePage {
|
private String userPhone;
|
private String cityCode;
|
private Integer status;
|
private Integer userTagId;
|
private Integer vipTypeId;
|
private Integer companyId;
|
}
|