zhangxu
2022-11-23 1c744733a032b1da5d429830268a6314b39eba09
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.hz.his.dto.user;
 
import com.hz.his.dto.PageDto;
import lombok.Data;
 
 
/**查询用户详情数据*/
@Data
public class UserDto extends PageDto {
 
    private String id;
    private String userId;
    /**ciq*/
    private String CIQ;
    /**名称*/
    private String name;
    /**手机号*/
    private String tel;
    /**所属门店标识*/
    private String shopId;
    /**所属顾问名称*/
    private String beCorpUser;
}