wangrenhuang
2023-06-21 811ca609a269b01d0a944d625275a5ea5f70ea57
提交 | 用户 | 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
811ca6 8 import java.util.Date;
W 9
7c680b 10
C 11 /**查询用户详情数据*/
12 @Data
deb9ce 13 public class UserDto extends PageDto {
654f88 14     /**标识*/
7c680b 15     private String id;
654f88 16     /**用户标识*/
deb9ce 17     private String userId;
6fd03e 18     /**ciq*/
7c680b 19     private String CIQ;
7008c6 20     /**会员号*/
F 21     private String memberNO;
6fd03e 22     /**名称*/
7c680b 23     private String name;
6fd03e 24     /**手机号*/
7c680b 25     private String tel;
6fd03e 26     /**所属门店标识*/
F 27     private String shopId;
70b3a9 28     /**所属顾问标识*/
F 29     private String hisCorpUserId;
6fd03e 30     /**所属顾问名称*/
F 31     private String beCorpUser;
654f88 32     /**是否查询所属顾问信息:0否1是*/
97e075 33     private Integer isSelectCorp = 0;
654f88 34     /**是否查询所属门店信息:0否1是*/
97e075 35     private Integer isSelectShop = 0;
F 36     /**是否查询推荐人信息:0否1是*/
37     private Integer isSelectInvitee = 0;
654f88 38     /**是否有门店*/
F 39     private Integer isHaveShop;
40     /**是否有顾问*/
41     private Integer isHaveCorp;
811ca6 42
W 43     private Date startTime;
44
45     private Date endTime;
46
7c680b 47 }