修改关注网站配置导入 主题、网站大小写不敏感;修改App Ip配置导入模板

This commit is contained in:
zhangwenqing
2019-01-21 15:47:32 +08:00
parent 3612bf09d9
commit d7d3f68222
5 changed files with 79 additions and 27 deletions

View File

@@ -39,6 +39,9 @@ public class AppTopicDomainCfg extends BaseCfg<AppTopicDomainCfg> {
@ExcelField(title="topic",dictType="TOPIC",sort=2)
private Long topicId;
private String topic;
private String websiteService;
/**
* 表达式类型
*/
@@ -180,4 +183,20 @@ public class AppTopicDomainCfg extends BaseCfg<AppTopicDomainCfg> {
this.websiteServiceId = websiteServiceId;
}
public String getTopic() {
return topic;
}
public void setTopic(String topic) {
this.topic = topic;
}
public String getWebsiteService() {
return websiteService;
}
public void setWebsiteService(String websiteService) {
this.websiteService = websiteService;
}
}