chenjiahe
2022-08-31 3009976f78b2a54536c85cc1c900ff0603e9bb24
提交 | 用户 | 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 {
7c680b 10
C 11     private String id;
deb9ce 12     private String userId;
6fd03e 13     /**ciq*/
7c680b 14     private String CIQ;
6fd03e 15     /**名称*/
7c680b 16     private String name;
6fd03e 17     /**手机号*/
7c680b 18     private String tel;
6fd03e 19     /**所属门店标识*/
F 20     private String shopId;
21     /**所属顾问名称*/
22     private String beCorpUser;
7c680b 23 }