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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
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.ToString;
import org.springframework.data.annotation.Transient;
 
import javax.validation.constraints.NotNull;
import java.io.Serializable;
import java.util.Date;
 
 
/**
 * Description: 元数据(属性池)
 *
 * @author LiHang
 * @date 2023/4/3
 */
@Data
@ToString(callSuper = true)
@TableName("pl_omd_attribute")
@ApiModel(value = "属性对象", description = "属性对象")
public class Attribute implements Serializable {
    /**
     * 序列化
     */
    private static final long serialVersionUID = -6792640675358002410L;
 
    /**
     * 主键
     */
    @ApiModelProperty(value = "主键")
    @NotNull
    private String oid;
 
    /**
     * 字段编号
     */
    @ApiModelProperty(value = "字段编号")
    @NotNull
    private String id;
 
    /**
     * 字段名称
     */
    @ApiModelProperty(value = "字段名称")
    private String name;
 
    /**
     * 属性类型字典码
     */
    @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;
 
    /**
     * 业务类型名称
     */
    @ApiModelProperty("业务类型名称")
    private String btmName;
 
    /**
     * 拥有者
     */
    @ApiModelProperty("拥有者")
    private String owner;
 
    /**
     * 创建人
     */
    @ApiModelProperty("创建人")
    private String creator;
 
    /**
     * 创建时间
     */
    @ApiModelProperty("创建时间")
    private Date createTime;
 
    /**
     * 最后修改人
     */
    @ApiModelProperty("最后修改人")
    private String lastModifier;
 
    /**
     * 最后修改时间,格式是yyyy-MM-dd HH:mm:ss
     */
    @ApiModelProperty("最后修改时间")
    private Date lastModifyTime;
 
}