潘志宝
3 天以前 af7bd200a95b9fc6b8b3f3fc603d612221e21fc7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.iailab.module.infra.controller.admin.db.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
@Schema(description = "管理后台 - 数据源配置的精简 Response VO")
@Data
public class DataSourceConfigSimpleRespVO {
 
    @Schema(description = "主键编号", required = true, example = "1024")
    private Integer id;
 
    @Schema(description = "数据源名称", required = true, example = "test")
    private String name;
 
}