TRX 1 жил өмнө
parent
commit
c638aad745

+ 6 - 9
src/main/java/com/github/microservice/models/baseParam/SuperModel.java

@@ -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;