rx
2024-07-11 86eb021bc2619d3b1eebfb82edd8181fc894a6de
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.hz.his.dto.label;
 
 
import lombok.Data;
 
/**
 * @author fwq
 */
@Data
public class UserLabelAddDto {
 
    /**phis用户标识*/
    private String userId;
    /**标签名*/
    private String labelName;
 
 
}