wip: 代码生成临时提交

This commit is contained in:
ray
2024-07-24 08:13:47 +08:00
parent cc8a24645b
commit 8a6adef303
13 changed files with 158 additions and 87 deletions

View File

@@ -11,27 +11,12 @@ import lombok.Data;
@TableName(value ="gen_config")
@Data
public class GenConfig extends BaseEntity {
/**
*
*/
@TableId(type = IdType.AUTO)
private Long id;
/**
* 表名
*/
private String tableName;
/**
* 表注释
*/
private String tableComment;
/**
* 实体名
*/
private String entityName;
/**
* 包名
*/
@@ -42,6 +27,21 @@ public class GenConfig extends BaseEntity {
*/
private String moduleName;
/**
* 实体名
*/
private String entityName;
/**
* 类描述
*/
private String comment;
/**
* 上级菜单ID
*/
private Long parentMenuId;
/**
* 作者
*/
@@ -49,5 +49,5 @@ public class GenConfig extends BaseEntity {
@TableLogic
private Boolean isDeleted;
private Integer isDeleted;
}