|
|
@@ -2510,6 +2510,8 @@ public class SceneFileBuildServiceImpl extends ServiceImpl<ISceneFileBuildMapper
|
|
|
fdageData.put("kNo", sceneOrigBd.getKNo());
|
|
|
fdageData.put("sceneOrigBdId", bdId);
|
|
|
fdageData.put("pushAddress", sceneOrigBd.getPushAddress());
|
|
|
+ fdageData.put("districtCode", sceneOrigBd.getDistrictCode());
|
|
|
+ fdageData.put("districtName", sceneOrigBd.getDistrictName());
|
|
|
}
|
|
|
|
|
|
//相机入库
|
|
|
@@ -2548,7 +2550,8 @@ public class SceneFileBuildServiceImpl extends ServiceImpl<ISceneFileBuildMapper
|
|
|
String idCard = null;
|
|
|
String jyNo = null;
|
|
|
String nickName = null;
|
|
|
- String pushAddress = null;
|
|
|
+ String districtCode = null;
|
|
|
+ String districtName = null;
|
|
|
if(uploadType != null && uploadType.equals("single")){
|
|
|
String fileId = this.getFileId(snCode, uuid);
|
|
|
String subFolder = snCode.concat(File.separator).concat(fileId).concat(File.separator).concat(uuid);
|
|
|
@@ -2572,7 +2575,8 @@ public class SceneFileBuildServiceImpl extends ServiceImpl<ISceneFileBuildMapper
|
|
|
idCard = sceneOrigBd.getRyCid();
|
|
|
jyNo = sceneOrigBd.getRyNo();
|
|
|
nickName = sceneOrigBd.getRyName();
|
|
|
- pushAddress = sceneOrigBd.getPushAddress();
|
|
|
+ districtCode = sceneOrigBd.getDistrictCode();
|
|
|
+ districtName = sceneOrigBd.getDistrictName();
|
|
|
}
|
|
|
//推送开始上传状态
|
|
|
|
|
|
@@ -2585,6 +2589,8 @@ public class SceneFileBuildServiceImpl extends ServiceImpl<ISceneFileBuildMapper
|
|
|
params.put("idCard", idCard);
|
|
|
params.put("jyNo", jyNo);
|
|
|
params.put("nickName", nickName);
|
|
|
+ params.put("districtCode", districtCode);
|
|
|
+ params.put("districtName", districtName);
|
|
|
String url = fdServiceUrl.concat(ApiConstant.URL_ADD_UCENTER_USER);
|
|
|
ResultData post1 = myClient.post(url, params);
|
|
|
log.info("---------registerUser result:{}-----------", post1);
|