设备接口更新优化

This commit is contained in:
itzhang 2025-06-27 17:12:16 +08:00
parent 0f6d5fcd2f
commit 582afa484c
2 changed files with 3 additions and 1 deletions

View File

@ -95,6 +95,8 @@ public class VendorController {
vendorMap.put("societycreditcode", vendorData.getString("tax_identification_number") != null ? vendorData.getString("tax_identification_number") : ""); vendorMap.put("societycreditcode", vendorData.getString("tax_identification_number") != null ? vendorData.getString("tax_identification_number") : "");
//纳税人识别号 //纳税人识别号
vendorMap.put("tx_register_no", vendorData.getString("tax_identification_number") != null ? vendorData.getString("tax_identification_number") : ""); vendorMap.put("tx_register_no", vendorData.getString("tax_identification_number") != null ? vendorData.getString("tax_identification_number") : "");
//U8C编码
vendorMap.put("f9w5_u8cnumber", vendorData.getString("historical_code__c") != null ? vendorData.getString("historical_code__c") : "");
// //联系人封装 // //联系人封装
// Map contactMap = new HashMap<>(); // Map contactMap = new HashMap<>();

View File

@ -405,7 +405,7 @@ public class DeviceInstallController {
System.out.println(JSON.parseObject(JSON.toJSONString(reqEntity))); System.out.println(JSON.parseObject(JSON.toJSONString(reqEntity)));
//开始发起请求 //开始发起请求
String deviceUrl = "http://192.168.5.55:9011/crm/updateDeviceContract"; String deviceUrl = "http://192.168.5.55:9011/crm/initInstallationDevice";
JSONObject deviceResult = new JSONObject(); JSONObject deviceResult = new JSONObject();