提交 9d39c927 authored 作者: zhanglibo's avatar zhanglibo

注释

上级 f8344a38
...@@ -182,13 +182,16 @@ type OrderDetailData struct { ...@@ -182,13 +182,16 @@ type OrderDetailData struct {
DeliveryPrice int `json:"delivery_price"` DeliveryPrice int `json:"delivery_price"`
UserMem string `json:"user_mem"` UserMem string `json:"user_mem"`
Orders []struct { Orders []struct {
OrderId int64 `json:"order_id"` OrderId int64 `json:"order_id"`
TotalPrice int `json:"total_price"` TotalPrice int `json:"total_price"`
PayPrice int `json:"pay_price"` PayPrice int `json:"pay_price"`
Amount int `json:"amount"` Amount int `json:"amount"`
Status int `json:"status"` Status int `json:"status"`
//订单状态 1.未支付 2.已支付.3.已完成 4.已取消 5. 申请退款 6.退款中 7. 已退款
// 8.拒绝退款 9.拼团支付成功 10.审核中 11.等待开奖 12.申请退货 13.待退货 14.退货中 15.拒绝退货 16.已退货 17已退货退款中
//18 已退货退款 19.已退货拒绝退款
DeliveryPrice int `json:"delivery_price"` DeliveryPrice int `json:"delivery_price"`
DeliveryStatus int `json:"delivery_status"` DeliveryStatus int `json:"delivery_status"` //配送状态:1.未发货 2.已发货 3.配送完成
DeliveryNo string `json:"delivery_no"` DeliveryNo string `json:"delivery_no"`
DeliveryCode string `json:"delivery_code"` DeliveryCode string `json:"delivery_code"`
DeliveryTime int `json:"delivery_time"` DeliveryTime int `json:"delivery_time"`
......
...@@ -101,15 +101,15 @@ type RefundDetailRes struct { ...@@ -101,15 +101,15 @@ type RefundDetailRes struct {
} }
type RefundDetailData struct { type RefundDetailData struct {
BatchNo string `json:"batch_no"` BatchNo string `json:"batch_no"` //订单所属批次号
OrderId int64 `json:"order_id"` OrderId int64 `json:"order_id"` //订单id
RefundOrderId int `json:"refund_order_id"` RefundOrderId int `json:"refund_order_id"` //退款单号
RefundStatus int `json:"refund_status"` RefundStatus int `json:"refund_status"` //当前退款状态( 1:退款中 2:退款成功 3:退款失败)
Type int `json:"type"` Type int `json:"type"` //类型(1:退款:2:申诉)
Address string `json:"address"` Address string `json:"address"` //退货发货地址信息(含联系人、联系电话、地址),以英文逗号分隔
Remarks string `json:"remarks"` Remarks string `json:"remarks"` //退款说明(退款状态为“退款失败”时填写的原因)
RefundMoney int `json:"refund_money"` RefundMoney int `json:"refund_money"`
AuditStatus int `json:"audit_status"` AuditStatus int `json:"audit_status"` //审核状态: 1.未审核 2.审核通过 3.审核拒绝
AuditTime int `json:"audit_time"` AuditTime int `json:"audit_time"`
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论