package com.se.system.domain.vo;
|
|
@SuppressWarnings("ALL")
|
public class NacosConfigVo {
|
private String id;
|
|
private String dataId;
|
|
private String group;
|
|
private String content;
|
|
private String md5;
|
|
private String encryptedDataKey;
|
|
private String tenant;
|
|
private String appName;
|
|
private String type;
|
|
private Long createTime;
|
|
private Long modifyTime;
|
|
private String createUser;
|
|
private String createIp;
|
|
private String desc;
|
|
private String use;
|
|
private String effect;
|
|
private String schema;
|
|
private String configTags;
|
|
public NacosConfigVo() {
|
}
|
|
public void setDefault() {
|
this.appName = "";
|
this.encryptedDataKey = "";
|
this.tenant = "";
|
this.modifyTime = System.currentTimeMillis();
|
this.createIp = "127.0.0.1";
|
this.use = "";
|
this.effect = "";
|
this.schema = "";
|
this.configTags = "";
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getDataId() {
|
return dataId;
|
}
|
|
public void setDataId(String dataId) {
|
this.dataId = dataId;
|
}
|
|
public String getGroup() {
|
return group;
|
}
|
|
public void setGroup(String group) {
|
this.group = group;
|
}
|
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
public String getAppName() {
|
return appName;
|
}
|
|
public void setAppName(String appName) {
|
this.appName = appName;
|
}
|
|
public String getDesc() {
|
return desc;
|
}
|
|
public void setDesc(String desc) {
|
this.desc = desc;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public String getMd5() {
|
return md5;
|
}
|
|
public void setMd5(String md5) {
|
this.md5 = md5;
|
}
|
|
public String getEncryptedDataKey() {
|
return encryptedDataKey;
|
}
|
|
public void setEncryptedDataKey(String encryptedDataKey) {
|
this.encryptedDataKey = encryptedDataKey;
|
}
|
|
public String getTenant() {
|
return tenant;
|
}
|
|
public void setTenant(String tenant) {
|
this.tenant = tenant;
|
}
|
|
public Long getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Long createTime) {
|
this.createTime = createTime;
|
}
|
|
public Long getModifyTime() {
|
return modifyTime;
|
}
|
|
public void setModifyTime(Long modifyTime) {
|
this.modifyTime = modifyTime;
|
}
|
|
public String getCreateUser() {
|
return createUser;
|
}
|
|
public void setCreateUser(String createUser) {
|
this.createUser = createUser;
|
}
|
|
public String getCreateIp() {
|
return createIp;
|
}
|
|
public void setCreateIp(String createIp) {
|
this.createIp = createIp;
|
}
|
|
public String getUse() {
|
return use;
|
}
|
|
public void setUse(String use) {
|
this.use = use;
|
}
|
|
public String getEffect() {
|
return effect;
|
}
|
|
public void setEffect(String effect) {
|
this.effect = effect;
|
}
|
|
public String getSchema() {
|
return schema;
|
}
|
|
public void setSchema(String schema) {
|
this.schema = schema;
|
}
|
|
public String getConfigTags() {
|
return configTags;
|
}
|
|
public void setConfigTags(String configTags) {
|
this.configTags = configTags;
|
}
|
}
|