Merge branch 'develop' of http://10.0.6.99/gwall/gwall.git into develop

This commit is contained in:
wangxin
2018-05-22 15:14:37 +08:00
10 changed files with 181 additions and 92 deletions

View File

@@ -15,6 +15,7 @@ public class FunctionRegionDict extends BaseCfg<FunctionRegionDict> {
private String configDistrict;
private String configDesc;
private Integer isMaat;
private Integer regionType;
public Integer getDictId() {
return dictId;
}
@@ -57,5 +58,11 @@ public class FunctionRegionDict extends BaseCfg<FunctionRegionDict> {
public void setIsMaat(Integer isMaat) {
this.isMaat = isMaat;
}
public Integer getRegionType() {
return regionType;
}
public void setRegionType(Integer regionType) {
this.regionType = regionType;
}
}