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