fwq
2022-07-25 deb9ce158ab4d9bf8a897115fa4a3e37e54b9af1
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;
}