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

@@ -4,23 +4,23 @@ import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
@Schema(description = "数据表分页VO")
@Schema(description = "数据表VO")
@Data
public class TablePageVO {
@Schema(description = "数据表名称", example = "sys_user")
@Schema(description = "表名称", example = "sys_user")
private String tableName;
@Schema(description = "数据表注释",example = "用户表")
@Schema(description = "表描述",example = "用户表")
private String tableComment;
@Schema(description = "数据表排序规则",example = "用户表")
@Schema(description = "表排序规则",example = "utf8mb4_general_ci")
private String tableCollation;
@Schema(description = "存储引擎",example = "InnoDB")
private String engine;
@Schema(description = "字符集",example = "utf8mb4_general_ci")
@Schema(description = "字符集",example = "utf8mb4")
private String charset;
@Schema(description = "创建时间",example = "2023-08-08 08:08:08")