URL公共组配置部分功能及相应sql提交

This commit is contained in:
zhangwenqing
2019-06-03 15:50:00 +08:00
parent fd714e30f4
commit 576e446292
13 changed files with 2069 additions and 8 deletions

View File

@@ -0,0 +1,23 @@
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;
}
}