提交 4482b960 authored 作者: 屈传平's avatar 屈传平

wangdian

上级 f6f56ff9
......@@ -10,52 +10,54 @@ var Order = new(order)
type order struct {
}
type OrderList struct {
Oid string `json:"oid"`
Status int `json:"status"`
RefundStatus int `json:"refund_status"`
GoodsId string `json:"goods_id"`
SpecId string `json:"spec_id"`
GoodsNo string `json:"goods_no"`
SpecNo string `json:"spec_no"`
GoodsName string `json:"goods_name"`
SpecName string `json:"spec_name"`
Num int `json:"num"`
Price float64 `json:"price"`
AdjustAmount float64 `json:"adjust_amount"`
Discount float64 `json:"discount"`
ShareDiscount float64 `json:"share_discount"`
Cid string `json:"cid"`
}
type TradeListReq struct {
Tid string `json:"tid"`
TradeStatus int `json:"trade_status"`
DeliveryTerm int `json:"delivery_term"`
PayStatus int `json:"pay_status"`
TradeTime string `json:"trade_time"`
PayTime string `json:"pay_time"`
BuyerNick string `json:"buyer_nick"`
BuyerEmail string `json:"buyer_email"`
ReceiverMobile string `json:"receiver_mobile"`
ReceiverTelno string `json:"receiver_telno"`
ReceiverZip string `json:"receiver_zip"`
ReceiverProvince string `json:"receiver_province"`
ReceiverName string `json:"receiver_name"`
ReceiverCity string `json:"receiver_city"`
ReceiverDistrict string `json:"receiver_district"`
ReceiverAddress string `json:"receiver_address"`
LogisticsType int `json:"logistics_type"`
InvoiceType int `json:"invoice_type"`
InvoiceTitle string `json:"invoice_title"`
InvoiceContent string `json:"invoice_content"`
BuyerMessage string `json:"buyer_message"`
CustData string `json:"cust_data"`
Remark string `json:"remark"`
RemarkFlag int `json:"remark_flag"`
PostAmount float64 `json:"post_amount"`
Paid float64 `json:"paid"`
CodAmount int `json:"cod_amount"`
ExtCodFee int `json:"ext_cod_fee"`
OrderList []struct {
Oid string `json:"oid"`
Status int `json:"status"`
RefundStatus int `json:"refund_status"`
GoodsId string `json:"goods_id"`
SpecId string `json:"spec_id"`
GoodsNo string `json:"goods_no"`
SpecNo string `json:"spec_no"`
GoodsName string `json:"goods_name"`
SpecName string `json:"spec_name"`
Num int `json:"num"`
Price float64 `json:"price"`
AdjustAmount float64 `json:"adjust_amount"`
Discount float64 `json:"discount"`
ShareDiscount float64 `json:"share_discount"`
Cid string `json:"cid"`
} `json:"order_list"`
Tid string `json:"tid"`
TradeStatus int `json:"trade_status"`
DeliveryTerm int `json:"delivery_term"`
PayStatus int `json:"pay_status"`
TradeTime string `json:"trade_time"`
PayTime string `json:"pay_time"`
BuyerNick string `json:"buyer_nick"`
BuyerEmail string `json:"buyer_email"`
ReceiverMobile string `json:"receiver_mobile"`
ReceiverTelno string `json:"receiver_telno"`
ReceiverZip string `json:"receiver_zip"`
ReceiverProvince string `json:"receiver_province"`
ReceiverName string `json:"receiver_name"`
ReceiverCity string `json:"receiver_city"`
ReceiverDistrict string `json:"receiver_district"`
ReceiverAddress string `json:"receiver_address"`
LogisticsType int `json:"logistics_type"`
InvoiceType int `json:"invoice_type"`
InvoiceTitle string `json:"invoice_title"`
InvoiceContent string `json:"invoice_content"`
BuyerMessage string `json:"buyer_message"`
CustData string `json:"cust_data"`
Remark string `json:"remark"`
RemarkFlag int `json:"remark_flag"`
PostAmount float64 `json:"post_amount"`
Paid float64 `json:"paid"`
CodAmount int `json:"cod_amount"`
ExtCodFee int `json:"ext_cod_fee"`
OrderList []*OrderList `json:"order_list"`
}
type TradePushReq struct {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论