修改关注网站配置导入 主题、网站大小写不敏感;修改App Ip配置导入模板
Conflicts: src/main/java/com/nis/web/controller/BaseController.java
This commit is contained in:
@@ -9,26 +9,10 @@ import com.nis.util.excel.ExcelField;
|
||||
*/
|
||||
public class TopicWebsiteTemplate extends StringAllNotDoLogTemplate{
|
||||
|
||||
private Long topicId; // 主题
|
||||
private Long websiteServiceId; // 网站
|
||||
private String topic; // 主题
|
||||
private String websiteService; // 网站
|
||||
private String cfgKeywords; // 域名
|
||||
|
||||
@ExcelField(title="topic",dictType="TOPIC",sort=2)
|
||||
public Long getTopicId() {
|
||||
return topicId;
|
||||
}
|
||||
public void setTopicId(Long topicId) {
|
||||
this.topicId = topicId;
|
||||
}
|
||||
|
||||
@ExcelField(title="website_server",dictType="WEBSITE_SERVER",sort=3)
|
||||
public Long getWebsiteServiceId() {
|
||||
return websiteServiceId;
|
||||
}
|
||||
public void setWebsiteServiceId(Long websiteServiceId) {
|
||||
this.websiteServiceId = websiteServiceId;
|
||||
}
|
||||
|
||||
@ExcelField(title="domain_name",sort=4)
|
||||
public String getCfgKeywords() {
|
||||
return cfgKeywords;
|
||||
@@ -36,5 +20,21 @@ public class TopicWebsiteTemplate extends StringAllNotDoLogTemplate{
|
||||
public void setCfgKeywords(String cfgKeywords) {
|
||||
this.cfgKeywords = cfgKeywords;
|
||||
}
|
||||
|
||||
@ExcelField(title="topic",sort=2)
|
||||
public String getTopic() {
|
||||
return topic;
|
||||
}
|
||||
public void setTopic(String topic) {
|
||||
this.topic = topic;
|
||||
}
|
||||
|
||||
@ExcelField(title="website_server",sort=3)
|
||||
public String getWebsiteService() {
|
||||
return websiteService;
|
||||
}
|
||||
public void setWebsiteService(String websiteService) {
|
||||
this.websiteService = websiteService;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user