|
|
@@ -305,7 +305,7 @@ public class RequestSTKServiceImpl implements RequestSTKService {
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public SaveOrChangeCustomerDataVo updateKSPostParam(Integer page, Integer size, SaveOrChangeCustomerDetailDto dto) throws Exception {
|
|
|
+ public SaveOrChangeCustomerDataVo updateKSPostParam(SaveOrChangeCustomerDetailDto dto) throws Exception {
|
|
|
|
|
|
//时间戳
|
|
|
String timestamp = Long.toString(System.currentTimeMillis());
|
|
|
@@ -313,13 +313,13 @@ public class RequestSTKServiceImpl implements RequestSTKService {
|
|
|
//每一条数据在这里构造,根据实际情况修改
|
|
|
JSONObject request=new JSONObject(4);
|
|
|
|
|
|
- Field[] fields = dto.getClass().getDeclaredFields();
|
|
|
+ /*Field[] fields = dto.getClass().getDeclaredFields();
|
|
|
for(Field field : fields){
|
|
|
String fieldName = field.getName();
|
|
|
if(getValueByFieldName(fieldName,dto)!=null)
|
|
|
request.put(fieldName, getValueByFieldName(fieldName,dto));
|
|
|
- }
|
|
|
- /*request.put("NAME","紫光展讯通信惠州有限公司");
|
|
|
+ }*/
|
|
|
+ request.put("NAME","紫光展讯通信惠州有限公司");
|
|
|
request.put("S_CODE","2024-07-04 17:11:43");
|
|
|
request.put("UID_TYPE","01");
|
|
|
request.put("UID","91441300MA4WY7CN2T");
|
|
|
@@ -331,7 +331,7 @@ public class RequestSTKServiceImpl implements RequestSTKService {
|
|
|
request.put("MDM_CODE",null);
|
|
|
request.put("CREAT_AT","2024-07-04 17:11:43");
|
|
|
request.put("UPDATE_AT","2024-07-04 17:11:43");
|
|
|
- request.put("SERIAL","23468156486151");*/
|
|
|
+ request.put("SERIAL","23468156486151");
|
|
|
|
|
|
|
|
|
//param参数构造 并传入你构造的每一条数据参数,此处例:1条
|