rx
2024-04-10 110f6115f41e6a4f2880c7841c79816bf7ce5a69
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.hz.his.dto.label;
 
import lombok.Data;
 
/**
 * @author fwq
 * dcp标签修改扩展
 */
@Data
public class UserLabelEditDto {
 
    /**是否自定义*/
    private Integer isCustom;
    /**标签类型编号*/
    private String typeNo;
    /**标识编号*/
    private String tagNo;
 
}