数据库文档优化

This commit is contained in:
暮光:城中城
2019-07-23 21:39:57 +08:00
parent fb5438e1ec
commit 417132d25c
11 changed files with 56 additions and 20 deletions

View File

@@ -1,13 +1,14 @@
package com.zyplayer.doc.data.repository.manage.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import java.util.Date;
import com.baomidou.mybatisplus.annotation.TableId;
import java.io.Serializable;
import java.util.Date;
/**
* <p>
*
*
* </p>
*
* @author 暮光:城中城
@@ -63,6 +64,11 @@ public class DbDatasource implements Serializable {
*/
private Integer yn;
/**
* 数据源名称
*/
private String name;
public Long getId() {
return id;
}
@@ -141,4 +147,12 @@ public class DbDatasource implements Serializable {
", yn=" + yn +
"}";
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}