package com.se.nsl.domain;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* 实体数据库
|
*
|
* @author xingjinshuang
|
* @date 2024/07/04
|
*/
|
@Data
|
@ApiModel(value = "EntityDataBase", description = "实体数据库相关内容")
|
public class EntityDataBase implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 用户名
|
*/
|
@ApiModelProperty("用户名")
|
private String userName;
|
|
/**
|
* 用户密码
|
*/
|
@ApiModelProperty("用户密码")
|
private String userPassword;
|
|
/**
|
* 数据库名
|
*/
|
@ApiModelProperty("数据库名")
|
private String databaseName;
|
|
}
|