打印日志
This commit is contained in:
parent
4d7763cea5
commit
4df2832c59
|
@ -43,6 +43,7 @@ public class Cbs8ExtServiceImpl implements ICbs8ExtService {
|
|||
@Override
|
||||
public SysExtensionApiEntity payApply(SysExtensionApiEntity entity) {
|
||||
String bodys = entity.getBodys();
|
||||
logger.info("Cbs8ExtServiceImpl.payApply方法body参数:{}",bodys);
|
||||
if (StrUtil.isNotEmpty(bodys)) {
|
||||
PaymentEntity paymentEntity = JSONObject.parseObject(bodys, PaymentEntity.class);
|
||||
if (null != paymentEntity) {
|
||||
|
@ -73,6 +74,7 @@ public class Cbs8ExtServiceImpl implements ICbs8ExtService {
|
|||
entity.setBodys(requestData);
|
||||
}
|
||||
}
|
||||
logger.info("Cbs8ExtServiceImpl.payApply方法执行完毕:{}",JSONObject.toJSONString(entity));
|
||||
return entity;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue