|
|
@@ -291,15 +291,12 @@ public class RequestSTKServiceImpl implements RequestSTKService {
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public HttpResultResponse updateKSPostParam(Integer page, Integer size, List<SaveOrChangeCustomerDetailDto> dtos) throws Exception {
|
|
|
+ public HttpResultResponse updateKSPostParam(Integer page, Integer size, SaveOrChangeCustomerDetailDto dto) throws Exception {
|
|
|
//时间戳
|
|
|
String timestamp = Long.toString(System.currentTimeMillis());
|
|
|
|
|
|
//加签方法的重要参数
|
|
|
JSONObject request=new JSONObject(4);
|
|
|
- request.put("page",page);
|
|
|
- request.put("size",size);
|
|
|
-
|
|
|
//传入参数 此处案例仅放置了时间,可自行添加
|
|
|
//JSONObject param=new JSONObject();
|
|
|
//param.put("UPDATE_TIME_start","2024-05-09 14:24:06");
|
|
|
@@ -308,7 +305,7 @@ public class RequestSTKServiceImpl implements RequestSTKService {
|
|
|
//param.put("TASKCODE","202409");
|
|
|
|
|
|
|
|
|
- request.put("param",dtos);
|
|
|
+ request.put("param",dto);
|
|
|
|
|
|
String content = request.toString();
|
|
|
|