eight
2024-09-23 f14d9737da8bbe94e82427f2d0e727fd15c88f2e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package cn.lihu.jh.module.infra.controller.admin.codegen.vo.table;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
@Schema(description = "管理后台 - 数据库的表定义 Response VO")
@Data
public class DatabaseTableRespVO {
 
    @Schema(description = "表名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "yuanma")
    private String name;
 
    @Schema(description = "表描述", requiredMode = Schema.RequiredMode.REQUIRED, example = "芋道源码")
    private String comment;
 
}