This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
k18-ntcs-web-ntc/src/main/java/com/nis/domain/configuration/template/TopicWebsiteTemplate.java
zhangwenqing e412d22569 修改关注网站配置导入 主题、网站大小写不敏感;修改App Ip配置导入模板
Conflicts:
	src/main/java/com/nis/web/controller/BaseController.java
2019-01-21 23:50:13 +08:00

41 lines
930 B
Java

package com.nis.domain.configuration.template;
import com.nis.util.excel.ExcelField;
/**
* 主题网站配置导入模板类
* @author dell
*
*/
public class TopicWebsiteTemplate extends StringAllNotDoLogTemplate{
private String topic; // 主题
private String websiteService; // 网站
private String cfgKeywords; // 域名
@ExcelField(title="domain_name",sort=4)
public String getCfgKeywords() {
return cfgKeywords;
}
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;
}
}