lihang
2023-05-09 41c256180e5e7900c88b71a9f22590db21f87a7a
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
package com.vci.ubcs.omd.entity;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import org.springblade.core.mp.base.BaseEntity;
import org.springframework.data.annotation.Transient;
 
import javax.validation.constraints.NotNull;
import java.util.Date;
 
 
/**
 * Description: 元数据(属性池)
 *
 * @author LiHang
 * @date 2023/4/3
 */
@Data
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = true)
@TableName("pl_omd_attribute")
@ApiModel(value = "属性对象", description = "属性对象")
public class Attribute extends BaseEntity {
    /**
     * 序列化
     */
    private static final long serialVersionUID = -6792640675358002410L;
 
    /**
     * 租户ID
     */
    @ApiModelProperty(value = "租户ID")
    private String tenantId;
 
    /**
     * 字段编号
     */
    @ApiModelProperty(value = "字段编号")
    @NotNull
    private String key;
 
    /**
     * 字段名称
     */
    @ApiModelProperty(value = "字段名称")
    private String label;
 
    /**
     * 属性类型字典码
     */
    @ApiModelProperty(value = "属性类型字典码")
    private String typeCode;
 
    /**
     * 属性类型字典值
     */
    @ApiModelProperty(value = "属性类型字典值")
    private String typeKey;
 
    /**
     * 属性类型字典显示名称
     */
    @Transient
    @TableField(exist = false)
    private String typeValue;
 
 
    /**
     * 标签
     */
    @ApiModelProperty(value = "标签")
    private String hashtag;
 
    /**
     * 描述
     */
    @ApiModelProperty(value = "描述")
    private String description;
 
    /**
     * 是否为空
     */
    @ApiModelProperty("是否为空")
    private String nullable;
 
    /**
     * 最大长度
     */
    @ApiModelProperty("最大长度")
    private Integer maxLength;
 
    /**
     * 精度
     */
    @ApiModelProperty("精度")
    private Integer precision;
 
    /**
     * 参照的类型
     */
    @ApiModelProperty("参照类型字典码")
    private String referTypeCode;
 
    /**
     * 参照类型字典值
     */
    @ApiModelProperty("参照类型字典值")
    private String referTypeKey;
 
    /**
     * 参照类型字典显示名称
     */
    @Transient
    @TableField(exist = false)
    private String referTypeValue;
 
    /**
     * 参照对象
     */
    @ApiModelProperty("参照的主键")
    @JsonSerialize(using = ToStringSerializer.class)
    private String referToId;
 
    /**
     * 参照对象的名称
     */
    @ApiModelProperty("参照对象名称")
    private String referToName;
 
    /**
     * 使用字典
     */
    @ApiModelProperty("使用字典")
    private String usingDict;
 
    /**
     * 字典码
     */
    @ApiModelProperty("字典码")
    private String dictCode;
 
    /**
     * 字典键值
     */
    @ApiModelProperty("字典键值")
    private String dictKey;
 
    /**
     * 字典显示值
     */
    @Transient
    @TableField(exist = false)
    private String dictValue;
 
    /**
     * 默认值
     */
    @ApiModelProperty("默认值")
    private String defaultValue;
 
    /**
     * 时间戳
     */
    @ApiModelProperty(value = "时间戳")
    private Date ts;
 
    /**
     * 比较方式
     */
    @Transient
    @TableField(exist = false)
    private String calculateType;
 
    /**
     * 比较值
     */
    @Transient
    @TableField(exist = false)
    private String calculateValue;
}