chenjiahe
2024-04-11 c4f8c03d90b47792d1b83620024dd24297704fe1
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;
 
 
}