Commit 359401a0 by xiaoer.li@freemud.com

ext_info增加pay_code

parent cb8fc120
......@@ -122,6 +122,9 @@ public class AppOrderServiceImpl implements AppOrderService {
OrderExtInfoDto extInfo = JSONObject.parseObject(productOrderBean.getExtInfo(), OrderExtInfoDto.class);
extInfo.setAppid(createPrepayVo.getPayAppId());
extInfo.setOpenid(createPrepayVo.getOpenId());
if (StringUtils.isNotBlank(createPrepayVo.getPayCode())) {
extInfo.setPayCode(createPrepayVo.getPayCode());
}
String faceCode = "";
String cardCode = "";
String transId = createPrepayVo.getOrderCode() + redisService.increment(RedisUtil.getPaymentTransIdSequenceKey(createPrepayVo.getOrderCode()), 1, TimeUnit.DAYS);
......
......@@ -138,4 +138,9 @@ public class OrderExtInfoDto {
* 出场时间
*/
private String outTime;
/**
* 支付渠道编号(参考支付组payment_platform)
*/
private String payCode;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment