fwq
2022-10-20 a8b6c114857a4fdc49b373967475b24caa11ee75
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;
}