提交 | 用户 | age | ||
f5bce1 | 1 | package com.hz.his.dto.user; |
7c680b | 2 | |
deb9ce | 3 | import com.hz.his.dto.PageDto; |
7c680b | 4 | import lombok.Data; |
C | 5 | |
6 | ||
7 | /**查询用户详情数据*/ | |
8 | @Data | |
deb9ce | 9 | public class UserDto extends PageDto { |
7c680b | 10 | |
C | 11 | private String id; |
deb9ce | 12 | private String userId; |
7c680b | 13 | private String CIQ; |
C | 14 | private String name; |
15 | private String tel; | |
16 | } |