fhx
2023-08-29 4829593daa194b175e9e914634d352c7c4f0ffc6
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
27
28
29
30
31
package com.hz.his.dto.appearance;
 
import lombok.Data;
 
/**
 * 颜值规划标签Dto
 */
@Data
public class AppearanceLabelDto {
 
    /**标签分类标识(LabelType)*/
    private String labelTypeId;
    /**标签分类编号(不填自动生成)*/
    private String labelTypeNo;
    /**标签分类名称*/
    private String labelTypeName;
 
    /**标签标识(LabelInfo)*/
    private String labelInfoId;
    /**标签编号(不填则自动生成)*/
    private String labelInfoNo;
    /**标签名称*/
    private String labelInfoName;
    /**颜色*/
    private String color;
    /** 其他信息 */
    private AppearanceLabelInfoDto labelInfo;
 
    public AppearanceLabelDto() {
    }
}