潘志宝
3 天以前 e14de70a3c4b393498d3e95717b19240c4426c22
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;
 
}