Commit 38cdb566 by shuhu.hou

微信订单上传,新增订单创建时间

parent b14347d1
...@@ -160,6 +160,7 @@ public class OrderCallBackMQService { ...@@ -160,6 +160,7 @@ public class OrderCallBackMQService {
wechatReportOrderDto.setPartnerId(orderInfoReqs.getPartnerId()); wechatReportOrderDto.setPartnerId(orderInfoReqs.getPartnerId());
wechatReportOrderDto.setShopId(orderInfoReqs.getStoreId()); wechatReportOrderDto.setShopId(orderInfoReqs.getStoreId());
wechatReportOrderDto.setSubMchId(orderExtInfoDto.getPlatformMchId()); wechatReportOrderDto.setSubMchId(orderExtInfoDto.getPlatformMchId());
wechatReportOrderDto.setGmtCreate(Long.parseLong(orderInfoReqs.getCreateTime()));
if (StringUtils.isBlank(orderExtInfoDto.getPlatformMchId())) { if (StringUtils.isBlank(orderExtInfoDto.getPlatformMchId())) {
// 获取当前商户微信支付mchId // 获取当前商户微信支付mchId
AssortmentOpenPlatformWxapp wxApp = openPlatformWxappManager.findByPartnerIdAndWxappId(userLoginInfoDto.getPartnerId(), userLoginInfoDto.getWxAppid()); AssortmentOpenPlatformWxapp wxApp = openPlatformWxappManager.findByPartnerIdAndWxappId(userLoginInfoDto.getPartnerId(), userLoginInfoDto.getWxAppid());
......
...@@ -90,6 +90,10 @@ public class WechatReportOrderDto { ...@@ -90,6 +90,10 @@ public class WechatReportOrderDto {
* 消费人数 * 消费人数
*/ */
private int peopleCount; private int peopleCount;
/**
* 创建时间 时间戳
*/
private Long gmtCreate;
@Data @Data
public static class DishInfo{ public static class DishInfo{
......
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