fwq
2023-04-06 7008c640c2b04c62e50a00b10a9c9e178976e359
提交 | 用户 | age
f5bce1 1 package com.hz.his.dto.user;
7c680b 2
deb9ce 3 import com.hz.his.dto.PageDto;
7c680b 4 import lombok.Data;
C 5
6
7 /**查询用户详情数据*/
8 @Data
deb9ce 9 public class UserDto extends PageDto {
654f88 10     /**标识*/
7c680b 11     private String id;
654f88 12     /**用户标识*/
deb9ce 13     private String userId;
6fd03e 14     /**ciq*/
7c680b 15     private String CIQ;
7008c6 16     /**会员号*/
F 17     private String memberNO;
6fd03e 18     /**名称*/
7c680b 19     private String name;
6fd03e 20     /**手机号*/
7c680b 21     private String tel;
6fd03e 22     /**所属门店标识*/
F 23     private String shopId;
70b3a9 24     /**所属顾问标识*/
F 25     private String hisCorpUserId;
6fd03e 26     /**所属顾问名称*/
F 27     private String beCorpUser;
654f88 28     /**是否查询所属顾问信息:0否1是*/
F 29     private Integer isSelectCorp;
30     /**是否查询所属门店信息:0否1是*/
31     private Integer isSelectShop;
32     /**是否有门店*/
33     private Integer isHaveShop;
34     /**是否有顾问*/
35     private Integer isHaveCorp;
7c680b 36 }