|
@@ -291,7 +291,7 @@ public class RequestSTKServiceImpl implements RequestSTKService {
|
|
}
|
|
}
|
|
|
|
|
|
@Override
|
|
@Override
|
|
- public HttpResultResponse updateKSPostParam(Integer page, Integer size, UpdateCustVendDTO dto) throws Exception {
|
|
|
|
|
|
+ public HttpResultResponse updateKSPostParam(Integer page, Integer size, List<SaveOrChangeCustomerDetailDto> dtos) throws Exception {
|
|
//时间戳
|
|
//时间戳
|
|
String timestamp = Long.toString(System.currentTimeMillis());
|
|
String timestamp = Long.toString(System.currentTimeMillis());
|
|
|
|
|
|
@@ -301,17 +301,20 @@ public class RequestSTKServiceImpl implements RequestSTKService {
|
|
request.put("size",size);
|
|
request.put("size",size);
|
|
|
|
|
|
//传入参数 此处案例仅放置了时间,可自行添加
|
|
//传入参数 此处案例仅放置了时间,可自行添加
|
|
- JSONObject param=new JSONObject();
|
|
|
|
|
|
+ //JSONObject param=new JSONObject();
|
|
//param.put("UPDATE_TIME_start","2024-05-09 14:24:06");
|
|
//param.put("UPDATE_TIME_start","2024-05-09 14:24:06");
|
|
//param.put("UPDATE_TIME_end","2024-05-09 15:01:28");
|
|
//param.put("UPDATE_TIME_end","2024-05-09 15:01:28");
|
|
//param.put("TASKNO","P2022032200000041");
|
|
//param.put("TASKNO","P2022032200000041");
|
|
//param.put("TASKCODE","202409");
|
|
//param.put("TASKCODE","202409");
|
|
|
|
|
|
|
|
|
|
- request.put("param",dto);
|
|
|
|
|
|
+ request.put("param",dtos);
|
|
|
|
|
|
String content = request.toString();
|
|
String content = request.toString();
|
|
|
|
|
|
|
|
+
|
|
|
|
+ log.info("修改客商信息入参content:{}",content);
|
|
|
|
+
|
|
//加签方法第一个参数
|
|
//加签方法第一个参数
|
|
StringBuilder signBuilder = new StringBuilder("appid").append("=").append(STK_APP_ID).append("&")
|
|
StringBuilder signBuilder = new StringBuilder("appid").append("=").append(STK_APP_ID).append("&")
|
|
.append(content).append("&")
|
|
.append(content).append("&")
|