|
|
|
@ -485,7 +485,7 @@ public class UdiContrastService {
|
|
|
|
|
*
|
|
|
|
|
* @param list
|
|
|
|
|
*/
|
|
|
|
|
public void codeRelUpdateBatch(List<CodeRel> list) {
|
|
|
|
|
public BaseResponse codeRelUpdateBatch(List<CodeRel> list) {
|
|
|
|
|
if (list != null && list.size() > 0) {
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
@ -494,18 +494,23 @@ public class UdiContrastService {
|
|
|
|
|
|
|
|
|
|
if (baseResponse.getCode() == 20000) {
|
|
|
|
|
log.error("国家库===上传多码关系===" + list.get(0).getYbbm() + "成功===");
|
|
|
|
|
return ResultVOUtils.success("国家库===上传多码关系===" + list.get(0).getYbbm() + "成功===");
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
log.error("国家库===上传多码关系===出现错误===" + baseResponse.getMessage());
|
|
|
|
|
return ResultVOUtils.error(500,"国家库===上传多码关系===出现错误===" + baseResponse.getMessage());
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
|
|
|
|
|
log.error("国家库===上传多码关系===出现错误===" + e.getMessage());
|
|
|
|
|
return ResultVOUtils.error(500,"国家库===上传多码关系===出现错误==="+e.getMessage());
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
log.error("国家库===上传多码关系===出现错误===数据为空");
|
|
|
|
|
return ResultVOUtils.error(500,"国家库===上传多码关系===出现错误===数据为空");
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -516,21 +521,24 @@ public class UdiContrastService {
|
|
|
|
|
*
|
|
|
|
|
* @param codeRel
|
|
|
|
|
*/
|
|
|
|
|
public void deleteRelCode(CodeRel codeRel) {
|
|
|
|
|
public BaseResponse deleteRelCode(CodeRel codeRel) {
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
String response = HttpUtil.post(udiUrl + "/udchs/codeRel/delete", JSONUtil.toJsonStr(codeRel));
|
|
|
|
|
BaseResponse<String> baseResponse = JSONUtil.toBean(response, BaseResponse.class);
|
|
|
|
|
|
|
|
|
|
if (baseResponse.getCode() == 20000) {
|
|
|
|
|
return ResultVOUtils.success("国家库===删除多玛关系===成功");
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
log.error("国家库===删除多玛关系===出现错误===" + baseResponse.getMessage());
|
|
|
|
|
return ResultVOUtils.error(500,"国家库===上传多码关系===出现错误===" + baseResponse.getMessage());
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
log.error("国家库===删除多玛关系===出现错误===" + e.getMessage());
|
|
|
|
|
return ResultVOUtils.error(500,"国家库===上传多码关系===出现错误==="+e.getMessage());
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|