17 lines
390 B
Java
17 lines
390 B
Java
|
|
package com.nis.domain.configuration.template;
|
||
|
|
|
||
|
|
import com.nis.util.excel.ExcelField;
|
||
|
|
|
||
|
|
public class DomainInterceptTemplate extends StringAllTemplate{
|
||
|
|
private String cfgKeywords;
|
||
|
|
|
||
|
|
@ExcelField(title="domain_name",sort=11)
|
||
|
|
public String getCfgKeywords() {
|
||
|
|
return cfgKeywords;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setCfgKeywords(String cfgKeywords) {
|
||
|
|
this.cfgKeywords = cfgKeywords;
|
||
|
|
}
|
||
|
|
}
|