添加UI设置的数据库及获取UI设置的接口描述
This commit is contained in:
@@ -0,0 +1,74 @@
|
||||
package com.gzzn.omms.adminapi.domain.primary.entity.settings;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the uisettings database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="uisettings")
|
||||
@NamedQuery(name="Uisettings.findAll", query="SELECT u FROM Uisettings u")
|
||||
public class Uisettings implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Id
|
||||
private String id;
|
||||
|
||||
@Column(name="env_code")
|
||||
private String envCode;
|
||||
|
||||
@Column(name="group_code")
|
||||
private String groupCode;
|
||||
|
||||
@Column(name="setting_content")
|
||||
private String settingContent;
|
||||
|
||||
private String userid;
|
||||
|
||||
public Uisettings() {
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getEnvCode() {
|
||||
return this.envCode;
|
||||
}
|
||||
|
||||
public void setEnvCode(String envCode) {
|
||||
this.envCode = envCode;
|
||||
}
|
||||
|
||||
public String getGroupCode() {
|
||||
return this.groupCode;
|
||||
}
|
||||
|
||||
public void setGroupCode(String groupCode) {
|
||||
this.groupCode = groupCode;
|
||||
}
|
||||
|
||||
public String getSettingContent() {
|
||||
return this.settingContent;
|
||||
}
|
||||
|
||||
public void setSettingContent(String settingContent) {
|
||||
this.settingContent = settingContent;
|
||||
}
|
||||
|
||||
public String getUserid() {
|
||||
return this.userid;
|
||||
}
|
||||
|
||||
public void setUserid(String userid) {
|
||||
this.userid = userid;
|
||||
}
|
||||
|
||||
}
|
||||
+64
@@ -0,0 +1,64 @@
|
||||
package com.gzzn.omms.adminapi.domain.primary.entity.settings;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
/**
|
||||
* The persistent class for the uisettings_default database table.
|
||||
*
|
||||
*/
|
||||
@Entity
|
||||
@Table(name="uisettings_default")
|
||||
@NamedQuery(name="UisettingsDefault.findAll", query="SELECT u FROM UisettingsDefault u")
|
||||
public class UisettingsDefault implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Id
|
||||
private String id;
|
||||
|
||||
@Column(name="env_code")
|
||||
private String envCode;
|
||||
|
||||
@Column(name="group_code")
|
||||
private String groupCode;
|
||||
|
||||
@Column(name="setting_content")
|
||||
private String settingContent;
|
||||
|
||||
public UisettingsDefault() {
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getEnvCode() {
|
||||
return this.envCode;
|
||||
}
|
||||
|
||||
public void setEnvCode(String envCode) {
|
||||
this.envCode = envCode;
|
||||
}
|
||||
|
||||
public String getGroupCode() {
|
||||
return this.groupCode;
|
||||
}
|
||||
|
||||
public void setGroupCode(String groupCode) {
|
||||
this.groupCode = groupCode;
|
||||
}
|
||||
|
||||
public String getSettingContent() {
|
||||
return this.settingContent;
|
||||
}
|
||||
|
||||
public void setSettingContent(String settingContent) {
|
||||
this.settingContent = settingContent;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user