fwq
2024-04-11 e1972e6d92e6b57ecb65eb7998606e620d9f6811
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;
 
 
}