wip: 代码生成临时提交

This commit is contained in:
ray
2024-07-26 08:18:43 +08:00
parent 7f6d429540
commit bf0e898752
10 changed files with 211 additions and 37 deletions

View File

@@ -0,0 +1,45 @@
package com.youlai.system.model.bo;
import lombok.Data;
/**
* 数据表元数据
*
* @author Ray
* @since 2.10.0
*/
@Data
public class TableMetaData {
/**
* 表名称
*/
private String tableName;
/**
* 表描述
*/
private String tableComment;
/**
* 排序规则
*/
private String tableCollation;
/**
* 存储引擎
*/
private String engine;
/**
* 字符集
*/
private String charset;
/**
* 创建时间
*/
private String createTime;
}