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