41 lines
930 B
Java
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;
|
|
}
|
|
|
|
}
|