Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
orderId field type
Signed-off-by: WangLei <904443972@qq.com>
  • Loading branch information
wangleiin committed Mar 24, 2021
commit ea6ab3558646844fa05c25dc9362a50f5aa87af5
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class WxMaShopAddOrderResult implements Serializable {
* 交易组件平台订单ID
*/
@SerializedName("order_id")
private Integer orderId;
private Long orderId;
/**
* 交易组件平台订单ID
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class WxMaShopOrderResult implements Serializable {
* 交易组件平台订单ID
*/
@SerializedName("order_id")
private Integer orderId;
private Long orderId;

/**
* 商家自定义订单ID
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class WxMaShopOrderPayRequest implements Serializable {
* </pre>
*/
@SerializedName("order_id")
private String orderId;
private Long orderId;
/**
* 商家自定义订单ID,与 order_id 二选一
* <pre>
Expand Down