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

41 lines
989 B
Java
Raw Normal View History

2019-01-09 09:18:49 +08:00
package com.nis.domain.configuration.template;
import com.nis.util.excel.ExcelField;
/**
* 主题网站配置导入模板类
* @author dell
*
*/
public class TopicWebsiteTemplate extends StringAllNotDoLogTemplate{
2019-01-09 09:18:49 +08:00
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;
}
}