com.lx.entity.CustomDbInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lxboot3 Show documentation
Show all versions of lxboot3 Show documentation
使用文档: https://a7fi97h1rc.feishu.cn/docx/X3LRdtLhkoXQ8hxgXDQc2CLOnEg?from=from_copylink
package com.lx.entity;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@AllArgsConstructor
@NoArgsConstructor
@Schema(name = "自定义数据源信息")
public class CustomDbInfo {
@Schema(description = "数据库链接(ip:prot 或者 jdbc:xxx...)")
private String url;
@Schema(description = "数据库登录名")
private String username;
@Schema(description = "数据库密码")
private String password;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy