wangrenhuang
2023-06-21 9f119f048a667da5804554b13fc291fa83d70505
提交 | 用户 | age
f5bce1 1 package com.hz.his.dto.user;
7c680b 2
9f119f 3 import com.gitee.sunchenbin.mybatis.actable.annotation.Column;
W 4 import com.gitee.sunchenbin.mybatis.actable.constants.MySqlTypeConstant;
deb9ce 5 import com.hz.his.dto.PageDto;
7c680b 6 import lombok.Data;
C 7
8
9 /**查询用户详情数据*/
10 @Data
deb9ce 11 public class UserDto extends PageDto {
654f88 12     /**标识*/
7c680b 13     private String id;
654f88 14     /**用户标识*/
deb9ce 15     private String userId;
6fd03e 16     /**ciq*/
7c680b 17     private String CIQ;
7008c6 18     /**会员号*/
F 19     private String memberNO;
6fd03e 20     /**名称*/
7c680b 21     private String name;
6fd03e 22     /**手机号*/
7c680b 23     private String tel;
6fd03e 24     /**所属门店标识*/
F 25     private String shopId;
70b3a9 26     /**所属顾问标识*/
F 27     private String hisCorpUserId;
6fd03e 28     /**所属顾问名称*/
F 29     private String beCorpUser;
654f88 30     /**是否查询所属顾问信息:0否1是*/
97e075 31     private Integer isSelectCorp = 0;
654f88 32     /**是否查询所属门店信息:0否1是*/
97e075 33     private Integer isSelectShop = 0;
F 34     /**是否查询推荐人信息:0否1是*/
35     private Integer isSelectInvitee = 0;
654f88 36     /**是否有门店*/
F 37     private Integer isHaveShop;
38     /**是否有顾问*/
39     private Integer isHaveCorp;
9f119f 40     /*开单平台,来源应用appId*/
W 41     private String appId;
7c680b 42 }