提交 | 用户 | 时间
|
e7c126
|
1 |
package com.iailab.module.infra.controller.admin.codegen.vo; |
H |
2 |
|
|
3 |
import com.iailab.module.infra.controller.admin.codegen.vo.column.CodegenColumnRespVO; |
|
4 |
import com.iailab.module.infra.controller.admin.codegen.vo.table.CodegenTableRespVO; |
|
5 |
import io.swagger.v3.oas.annotations.media.Schema; |
|
6 |
import lombok.Data; |
|
7 |
|
|
8 |
import java.util.List; |
|
9 |
|
|
10 |
@Schema(description = "管理后台 - 代码生成表和字段的明细 Response VO") |
|
11 |
@Data |
|
12 |
public class CodegenDetailRespVO { |
|
13 |
|
|
14 |
@Schema(description = "表定义") |
|
15 |
private CodegenTableRespVO table; |
|
16 |
|
|
17 |
@Schema(description = "字段定义") |
|
18 |
private List<CodegenColumnRespVO> columns; |
|
19 |
|
|
20 |
} |