fhx
2024-04-11 8aabd6f9a44fb4de7ef2c70ff0a15fc000f4b5d9
提交 | 用户 | age
23b230 1 package com.hz.his.dto.label;
F 2
3
4
5 import lombok.Data;
6
7 import java.util.List;
8
9 /**
10  * @author fwq
11  * dcp标签扩展
12  */
13 @Data
14 public class UserLabelDto {
15
16     /**phis用户标识*/
17     private String userId;
18     /**来源*/
19     private String sourceType;
20     /**修改的标签*/
21     private List<UserLabelEditDto> editUserTagInfoList;
22     /**删除的标签*/
23     private List<String> deleteUserTagInfoIdList;
24
25
26 }