修改公共类减少无用字段

This commit is contained in:
zhanghongqing
2018-08-17 12:30:04 +08:00
parent 5852483b88
commit 437680a569

View File

@@ -1,11 +1,30 @@
package com.nis.domain.configuration;
public class NtcSubscribeIdCfg extends BaseStringCfg<NtcSubscribeIdCfg> {
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import com.nis.util.excel.ExcelField;
public class NtcSubscribeIdCfg extends BaseCfg<NtcSubscribeIdCfg> {
/**
*
*/
private static final long serialVersionUID = 9137401459733286997L;
/**
* 配置关键字
*/
@Expose
@SerializedName("keywords")
@ExcelField(title="key_word")
protected String cfgKeywords;
public String getCfgKeywords() {
return cfgKeywords;
}
public void setCfgKeywords(String cfgKeywords) {
this.cfgKeywords = cfgKeywords;
}
}