| | |
| | | package com.hz.his.dto.user; |
| | | |
| | | import com.gitee.sunchenbin.mybatis.actable.annotation.Column; |
| | | import com.gitee.sunchenbin.mybatis.actable.constants.MySqlTypeConstant; |
| | | import com.hz.his.dto.PageDto; |
| | | import lombok.Data; |
| | | |
| | | import java.util.Date; |
| | | |
| | | |
| | | /**查询用户详情数据*/ |
| | |
| | | private String userId; |
| | | /**ciq*/ |
| | | private String CIQ; |
| | | /**会员号*/ |
| | | private String memberNO; |
| | | /**名称*/ |
| | | private String name; |
| | | /**手机号*/ |
| | |
| | | /**所属顾问名称*/ |
| | | private String beCorpUser; |
| | | /**是否查询所属顾问信息:0否1是*/ |
| | | private Integer isSelectCorp; |
| | | private Integer isSelectCorp = 0; |
| | | /**是否查询所属门店信息:0否1是*/ |
| | | private Integer isSelectShop; |
| | | private Integer isSelectShop = 0; |
| | | /**是否查询推荐人信息:0否1是*/ |
| | | private Integer isSelectInvitee = 0; |
| | | /**是否有门店*/ |
| | | private Integer isHaveShop; |
| | | /**是否有顾问*/ |
| | | private Integer isHaveCorp; |
| | | |
| | | private Date startTime; |
| | | |
| | | private Date endTime; |
| | | |
| | | } |