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/NtcSubscribeIdCfg.java
2018-08-17 12:30:04 +08:00

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;
}
}