zhou-hao 5 vuotta sitten
vanhempi
commit
dcab8d39e9

+ 4 - 0
hsweb-system/hsweb-system-authorization/hsweb-system-authorization-api/src/main/java/org/hswebframework/web/system/authorization/api/entity/PermissionEntity.java

@@ -33,6 +33,10 @@ public class PermissionEntity extends GenericEntity<String> {
     @Comment("状态")
     private Byte status;
 
+    @Column
+    @Comment("类型")
+    private String type;
+
     @Column
     @ColumnType(jdbcType = JDBCType.LONGVARCHAR)
     @JsonCodec

+ 1 - 1
hsweb-system/hsweb-system-dictionary/src/main/java/org/hswebframework/web/dictionary/entity/DictionaryEntity.java

@@ -49,7 +49,7 @@ public class DictionaryEntity extends GenericEntity<String> implements RecordCre
     @Column(nullable = false)
     private String                     describe;
     //创建时间
-    @Column
+    @Column(name = "create_time")
     private Long                       createTime;
     //创建人id
     @Column(name = "creator_id")