|
@@ -4,6 +4,7 @@ import com.emato.ccnet.wx.biz.req.play.wx.WxplayBiz;
|
|
|
import com.emato.ccnet.wx.biz.req.play.wx.WxplayResponse;
|
|
|
import com.emato.ccnet.wx.manager.result.Result;
|
|
|
import com.emato.ccnet.wx.support.msg.resp.ResponseMessage;
|
|
|
+import com.emato.ccnet.wx.util.jackson.JacksonUtil;
|
|
|
import org.slf4j.Logger;
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@@ -37,9 +38,9 @@ public class CusPlayController {
|
|
|
*/
|
|
|
@RequestMapping(value = "/wx/wxPlayBill", method = RequestMethod.POST)
|
|
|
public ResponseMessage wxPlayBillResponse(@RequestBody Result result) {
|
|
|
- LOGGER.info("---------- Cuspay支付单证回调处理开始 ----------------------------------------");
|
|
|
+ LOGGER.info("---------- Cuspay 支付单证回调处理开始 ---------> {}", JacksonUtil.toJson(result));
|
|
|
wxplayResponse.biz(result);
|
|
|
- LOGGER.info("---------- Cuspay支付单证回调处理结束 ----------------------------------------");
|
|
|
+ LOGGER.info("---------- Cuspay 支付单证回调处理结束 ----------------------------------------");
|
|
|
return null;
|
|
|
}
|
|
|
|