update 对接内蒙古平台

This commit is contained in:
2024-04-18 18:33:55 +08:00
parent d2e8d7f7f7
commit da04411229

View File

@@ -49,25 +49,6 @@ public class NMGController extends ThirdPartyBaseController {
}
}
// 解析DTO
// private <T> T parseDto(CommonParamsDTO dto, Class<T> targetClass) {
// // 解密
// String operatorId = dto.getOperatorID();
// // 通过operatorId 查出 operatorSecret
// ThirdPartyPlatformConfig platformConfig = thirdPartyPlatformConfigService.getInfoByOperatorId(operatorId);
// thirdpartySecretInfoService.queryByOperatorId(operatorId);
// if (platformConfig == null) {
// throw new BusinessException("1", "无此对接平台");
// }
//
// String dataSecret = platformConfig.getDataSecret();
// String dataSecretIv = platformConfig.getDataSecretIv();
//
// // 解密data 获取参数中的OperatorSecret
// String decrypt = Cryptos.decrypt(dto.getData(), dataSecret, dataSecretIv);
// return JSONObject.parseObject(decrypt, targetClass);
// }
/**
* 查询运营商信息
* 接口名称supervise_query_operator_info
@@ -128,7 +109,4 @@ public class NMGController extends ThirdPartyBaseController {
}
}
/**
*
*/
}