wzh
2022-08-03 4b718360c3c2756a5759cf326e5c03d3a7096d37
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;
}