41 lines
981 B
Java
41 lines
981 B
Java
|
|
package com.nis.domain.configuration.template;
|
||
|
|
|
||
|
|
import com.nis.util.excel.ExcelField;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 主题网站配置导入模板类
|
||
|
|
* @author dell
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
public class TopicWebsiteTemplate extends StringAllTemplate{
|
||
|
|
|
||
|
|
private Long topicId; // 主题
|
||
|
|
private Long websiteServiceId; // 网站
|
||
|
|
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;
|
||
|
|
}
|
||
|
|
public void setCfgKeywords(String cfgKeywords) {
|
||
|
|
this.cfgKeywords = cfgKeywords;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|