31 lines
639 B
Java
31 lines
639 B
Java
package com.nis.domain.configuration;
|
|
|
|
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;
|
|
}
|
|
|
|
|
|
}
|