分组配置管理GroupName改为可手动输入

This commit is contained in:
zhangwenqing
2019-06-14 17:12:41 +08:00
parent 3aebe7d905
commit d245ef7dc4
33 changed files with 2384 additions and 357 deletions

View File

@@ -10,14 +10,14 @@ import com.nis.util.excel.ExcelField;
public class UrlCommCfgTemplate extends StringAllNotDoLogTemplate{
@ExcelField(title="group_name",align=2,sort=10)
private Integer groupId;
private String groupName;
public Integer getGroupId() {
return groupId;
public String getGroupName() {
return groupName;
}
public void setGroupId(Integer groupId) {
this.groupId = groupId;
public void setGroupName(String groupName) {
this.groupName = groupName;
}
}