|
@@ -39,6 +39,12 @@ public class Dictionary {
|
|
|
@Column(name = "value", columnDefinition = "varchar(255) comment '值'")
|
|
|
private String value;
|
|
|
|
|
|
+ @Column(name = "part_number", columnDefinition = "bigint(20) comment '环节数量'")
|
|
|
+ private Integer part_number;
|
|
|
+
|
|
|
+ @Column(name = "document_number", columnDefinition = "vbigint(20) comment '文档数量'")
|
|
|
+ private Integer document_number;
|
|
|
+
|
|
|
@TableField(fill = FieldFill.INSERT_UPDATE)
|
|
|
@Column(name = "deleted", columnDefinition = "tinyint(4) comment '逻辑删除 0未删除 1已删除'")
|
|
|
private Integer deleted;
|