dcb
2025-06-06 a2ee6e0dcdcfd9d1b8011a3cecb4e0fc4f6eeea3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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;
 
}