潘志宝
2024-12-23 b651cbfd94d8d636c01b61e483ed1cff98e1bcb9
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;
 
}