|
|
@@ -15,24 +15,21 @@ public class SuperModel implements Serializable {
|
|
|
@Schema(description = "数据ID")
|
|
|
private String id;
|
|
|
|
|
|
- @Schema(description = "创建时间")
|
|
|
- private Long createTime;
|
|
|
-
|
|
|
- @Schema(description = "修改时间")
|
|
|
- private Long updateTime;
|
|
|
-
|
|
|
@Schema(description = "备注")
|
|
|
private String remark;
|
|
|
|
|
|
- @Schema(description = "是否已删除")
|
|
|
- private Boolean isDelete = Boolean.FALSE;
|
|
|
-
|
|
|
@Schema(description = "所属项目ID")
|
|
|
private String oid;
|
|
|
|
|
|
@Schema(description = "排序", hidden = true)
|
|
|
private Long sort;
|
|
|
|
|
|
+ @Schema(description = "创建时间")
|
|
|
+ private Long createTime;
|
|
|
+
|
|
|
+ @Schema(description = "修改时间")
|
|
|
+ private Long updateTime;
|
|
|
+
|
|
|
@Schema(description = "创建用户ID")
|
|
|
private String createUserId;
|
|
|
|