提交 | 用户 | age
|
7baba0
|
1 |
package com.hz.his.dto.user.pretriage; |
F |
2 |
|
|
3 |
import lombok.Data; |
|
4 |
|
|
5 |
/** |
|
6 |
* 用户预分诊卡标签 |
|
7 |
*/ |
|
8 |
@Data |
|
9 |
public class UserPretriageLabelDto { |
|
10 |
|
|
11 |
/** 用户预分诊卡信息Id */ |
|
12 |
private String userPretriageCardId; |
|
13 |
/** 分类标签ID(BaseClassify主键ID) */ |
|
14 |
private String labelId; |
|
15 |
/** 分类标签父类ID(BaseClassify-parentId) */ |
|
16 |
private String labelParentId; |
|
17 |
|
|
18 |
|
|
19 |
public UserPretriageLabelDto() { |
|
20 |
} |
|
21 |
|
|
22 |
public UserPretriageLabelDto(String userPretriageCardId, String labelId, String labelParentId) { |
|
23 |
this.userPretriageCardId = userPretriageCardId; |
|
24 |
this.labelId = labelId; |
|
25 |
this.labelParentId = labelParentId; |
|
26 |
} |
|
27 |
} |