1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.ruoyi.order.vo.delivery;
|
| import lombok.Data;
|
| @Data
| public class OrderKey {
| /**
| * 订单单号类型,用于确认需要上传详情的订单。枚举值1,使用下单商户号和商户侧单号;枚举值2,使用微信支付单号。
| */
| private int order_number_type;
| /**
| * 原支付交易对应的微信订单号
| */
| private String transaction_id;
| }
|
|