24 lines
437 B
Java
24 lines
437 B
Java
|
|
package com.nis.domain.configuration.template;
|
||
|
|
|
||
|
|
import com.nis.util.excel.ExcelField;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* URL公共组配置 导入模板
|
||
|
|
* @author dell
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
public class UrlCommCfgTemplate extends StringAllTemplate{
|
||
|
|
|
||
|
|
@ExcelField(title="url_group",align=2,sort=10)
|
||
|
|
private Integer groupId;
|
||
|
|
|
||
|
|
public Integer getGroupId() {
|
||
|
|
return groupId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setGroupId(Integer groupId) {
|
||
|
|
this.groupId = groupId;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|