wip: 代码生成临时提交
This commit is contained in:
53
src/main/java/com/youlai/system/model/entity/GenConfig.java
Normal file
53
src/main/java/com/youlai/system/model/entity/GenConfig.java
Normal file
@@ -0,0 +1,53 @@
|
||||
package com.youlai.system.model.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.*;
|
||||
|
||||
import com.youlai.system.common.base.BaseEntity;
|
||||
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;
|
||||
|
||||
/**
|
||||
* 包名
|
||||
*/
|
||||
private String packageName;
|
||||
|
||||
/**
|
||||
* 模块名
|
||||
*/
|
||||
private String moduleName;
|
||||
|
||||
/**
|
||||
* 作者
|
||||
*/
|
||||
private String author;
|
||||
|
||||
|
||||
@TableLogic
|
||||
private Boolean isDeleted;
|
||||
}
|
||||
Reference in New Issue
Block a user