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