提交 | 用户 | age
|
9cc2d6
|
1 |
package com.hz.his.dto.user.room; |
F |
2 |
|
|
3 |
import lombok.Data; |
|
4 |
|
fd0721
|
5 |
import java.util.Date; |
9cc2d6
|
6 |
import java.util.List; |
F |
7 |
|
|
8 |
/** |
|
9 |
* 用户科室关系转换使用 |
|
10 |
* code_no_data |
|
11 |
* */ |
|
12 |
@Data |
|
13 |
public class UserDoctorRoomDto { |
72ab6e
|
14 |
/**点诊类型*/ |
F |
15 |
private Integer type; |
9cc2d6
|
16 |
/**用户标识*/ |
F |
17 |
private String userId; |
fd0721
|
18 |
/**点诊时间开始*/ |
F |
19 |
private Date startTime; |
|
20 |
/**点诊时间结束*/ |
|
21 |
private Date endTime; |
|
22 |
/**点诊原因类型*/ |
|
23 |
private String reasonType; |
9cc2d6
|
24 |
/**备注*/ |
F |
25 |
private String operatorRemark; |
|
26 |
/**科室关系Json*/ |
|
27 |
private List<UserDoctorRoomItemDto> roomList; |
|
28 |
|
|
29 |
/**操作人信息*/ |
|
30 |
private String opId; |
|
31 |
private String opName; |
|
32 |
private String opShopId; |
|
33 |
private String opShopName; |
|
34 |
private String opRoleId; |
401e40
|
35 |
private String opRoleName; |
9cc2d6
|
36 |
private String opRoleTypeId; |
F |
37 |
private String opRoleStr; |
72ab6e
|
38 |
|
9cc2d6
|
39 |
} |