ANDRU-PC\Andru
2023-05-04 5143b4cbab2d81adfa3e36e27bfc132675c8d553
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
28
29
30
31
32
33
34
35
36
37
38
package com.hz.his.dto.user;
 
import com.hz.his.dto.PageDto;
import lombok.Data;
 
 
/**查询用户详情数据*/
@Data
public class UserDto extends PageDto {
    /**标识*/
    private String id;
    /**用户标识*/
    private String userId;
    /**ciq*/
    private String CIQ;
    /**会员号*/
    private String memberNO;
    /**名称*/
    private String name;
    /**手机号*/
    private String tel;
    /**所属门店标识*/
    private String shopId;
    /**所属顾问标识*/
    private String hisCorpUserId;
    /**所属顾问名称*/
    private String beCorpUser;
    /**是否查询所属顾问信息:0否1是*/
    private Integer isSelectCorp = 0;
    /**是否查询所属门店信息:0否1是*/
    private Integer isSelectShop = 0;
    /**是否查询推荐人信息:0否1是*/
    private Integer isSelectInvitee = 0;
    /**是否有门店*/
    private Integer isHaveShop;
    /**是否有顾问*/
    private Integer isHaveCorp;
}