kimi
2020-05-27 2893347bf72477c4d108e8589a0f61e3e97a990c
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
package com.highdatas.mdm.entity;
 
import com.baomidou.mybatisplus.activerecord.Model;
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableName;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author kimi
 * @since 2020-02-20
 */
@TableName("sys_assemble_db")
public class SysAssembleDb extends Model<SysAssembleDb> {
 
    private static final long serialVersionUID = 1L;
    /*
     *主键
     * */
    private String id;
    /*
     *汇集id
     *
     * */
    @TableField("parent_id")
    private String parentId;
    /*
     *数据源类型
     * */
    @TableField("datasource_type")
    private String datasourceType;
    /*
     *数据源名称
     * */
    @TableField("datasource_name")
    private String datasourceName;
    /*
     *ip +端口
     * */
    @TableField("ipaddress_port")
    private String ipaddressPort;
    /*
     *db名称
     * */
    @TableField("database_name")
    private String databaseName;
    /*
     *连接源url
     * */
    @TableField("datasource_url")
    private String datasourceUrl;
    /*
     *用户名
     * */
    @TableField("datasource_user")
    private String datasourceUser;
    /*
     *密码
     * */
    @TableField("datasource_pass")
    private String datasourcePass;
    /*
     *排序
     * */
    private Integer orderby;
    /*
     *是否激活
     * */
    private Boolean active;
    /*
     *创建时间
     * */
    @TableField("create_time")
    private Date createTime;
    /*
     *更新时间
     * */
    @TableField("update_time")
    private Date updateTime;
 
    public String getId() {
        return id;
    }
 
    public SysAssembleDb setId(String id) {
        this.id = id;
        return this;
    }
    public String getParentId() {
        return parentId;
    }
 
    public SysAssembleDb setParentId(String parentId) {
        this.parentId = parentId;
        return this;
    }
    public String getDatasourceType() {
        return datasourceType;
    }
 
    public SysAssembleDb setDatasourceType(String datasourceType) {
        this.datasourceType = datasourceType;
        return this;
    }
    public String getDatasourceName() {
        return datasourceName;
    }
 
    public SysAssembleDb setDatasourceName(String datasourceName) {
        this.datasourceName = datasourceName;
        return this;
    }
    public String getIpaddressPort() {
        return ipaddressPort;
    }
 
    public SysAssembleDb setIpaddressPort(String ipaddressPort) {
        this.ipaddressPort = ipaddressPort;
        return this;
    }
    public String getDatabaseName() {
        return databaseName;
    }
 
    public SysAssembleDb setDatabaseName(String databaseName) {
        this.databaseName = databaseName;
        return this;
    }
    public String getDatasourceUrl() {
        return datasourceUrl;
    }
 
    public SysAssembleDb setDatasourceUrl(String datasourceUrl) {
        this.datasourceUrl = datasourceUrl;
        return this;
    }
    public String getDatasourceUser() {
        return datasourceUser;
    }
 
    public SysAssembleDb setDatasourceUser(String datasourceUser) {
        this.datasourceUser = datasourceUser;
        return this;
    }
    public String getDatasourcePass() {
        return datasourcePass;
    }
 
    public SysAssembleDb setDatasourcePass(String datasourcePass) {
        this.datasourcePass = datasourcePass;
        return this;
    }
    public Integer getOrderby() {
        return orderby;
    }
 
    public SysAssembleDb setOrderby(Integer orderby) {
        this.orderby = orderby;
        return this;
    }
    public Boolean getActive() {
        return active;
    }
 
    public SysAssembleDb setActive(Boolean active) {
        this.active = active;
        return this;
    }
    public Date getCreateTime() {
        return createTime;
    }
 
    public SysAssembleDb setCreateTime(Date createTime) {
        this.createTime = createTime;
        return this;
    }
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public SysAssembleDb setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
        return this;
    }
 
    @Override
    protected Serializable pkVal() {
        return this.id;
    }
 
    @Override
    public String toString() {
        return "SysAssembleDb{" +
        "id=" + id +
        ", parentId=" + parentId +
        ", datasourceType=" + datasourceType +
        ", datasourceName=" + datasourceName +
        ", ipaddressPort=" + ipaddressPort +
        ", databaseName=" + databaseName +
        ", datasourceUrl=" + datasourceUrl +
        ", datasourceUser=" + datasourceUser +
        ", datasourcePass=" + datasourcePass +
        ", orderby=" + orderby +
        ", active=" + active +
        ", createTime=" + createTime +
        ", updateTime=" + updateTime +
        "}";
    }
}