wangrenhuang
2022-08-09 f148baa0e2c5cbcc6344bd34a44059eb8260f7f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
    private String CIQ;
    private String name;
    private String tel;
}