提交 | 用户 | 时间
|
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 |
import javax.validation.constraints.NotNull; |
|
7 |
|
|
8 |
/** |
|
9 |
* 数据源配置 Base VO,提供给添加、修改、详细的子 VO 使用 |
|
10 |
* 如果子 VO 存在差异的字段,请不要添加到这里,影响 Swagger 文档生成 |
|
11 |
*/ |
|
12 |
@Data |
|
13 |
public class DataSourceConfigBaseVO { |
|
14 |
|
|
15 |
@Schema(description = "数据源名称", required = true, example = "test") |
|
16 |
@NotNull(message = "数据源名称不能为空") |
|
17 |
private String name; |
|
18 |
|
|
19 |
@Schema(description = "数据源连接", required = true, example = "jdbc:mysql://127.0.0.1:3306/ruoyi-vue-pro") |
|
20 |
@NotNull(message = "数据源连接不能为空") |
|
21 |
private String url; |
|
22 |
|
|
23 |
@Schema(description = "用户名", required = true, example = "root") |
|
24 |
@NotNull(message = "用户名不能为空") |
|
25 |
private String username; |
|
26 |
|
|
27 |
} |