|
@@ -794,6 +794,19 @@ public class AsyncTaskImportService {
|
|
|
} else {
|
|
|
//添加小区
|
|
|
Community communityNew = new Community();
|
|
|
+ //获取小区最大值,然后加1
|
|
|
+ String code = "001";
|
|
|
+ List<Community> communities = communityMapper.getMaxCodeBySiteId(record.getSiteId());
|
|
|
+ if(communities.size()==1)
|
|
|
+ {
|
|
|
+ if (communities.get(0) != null) {
|
|
|
+ code =String.format("%03d",Integer.valueOf(communities.get(0).getCode()));
|
|
|
+ }else {
|
|
|
+ code = String.format("%03d",Integer.valueOf("1"));
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ communityNew.setCode(code);
|
|
|
communityNew.setSiteId(record.getSiteId());
|
|
|
communityNew.setName(communityName);
|
|
|
communityNew.setProvince((int) cellValueProvince.getNumberValue());
|