fwq
2022-08-29 17ce4337ea06f8f70864b3c93120e68ff7fb8d84
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;
}