You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.9 KiB
38 lines
1.9 KiB
package jingtong
|
|
|
|
import "github.com/shopspring/decimal"
|
|
|
|
type Order struct {
|
|
//UserName string `excel:"name:用户名;style:fill"`
|
|
//PayMethod string `excel:"name:支付方式"`
|
|
//PayID string `excel:"name:支付单号"`
|
|
//User string `excel:"name:客户"`
|
|
House string `excel:"name:发货仓"`
|
|
GoodsName string `excel:"name:商品名称"`
|
|
GoodsNum uint `excel:"name:订单数"`
|
|
UnitPrice decimal.Decimal `excel:"name:销售单价"`
|
|
GoodsAmount decimal.Decimal `excel:"name:商品总价"`
|
|
ExpressFee decimal.Decimal `excel:"name:订单运费"`
|
|
Tax string `excel:"name:关税"`
|
|
Coupon string `excel:"name:折扣"`
|
|
Paper string `excel:"name:使用红包"`
|
|
TotalAmount decimal.Decimal `excel:"name:销售总价"`
|
|
Code string `excel:"name:商品编号"`
|
|
OrderTime string `excel:"name:订单日期"`
|
|
OrderID uint `excel:"name:客户订单号"`
|
|
DetailID uint `excel:"name:子订单号"`
|
|
AssociateID string `excel:"name:关联子订单号"`
|
|
ExpressDate string `excel:"name:运单日"`
|
|
ExpressCompany string `excel:"name:快递公司"`
|
|
ExpressNo string `excel:"name:运单号"`
|
|
Receiver string `excel:"name:收货人"`
|
|
CardName string `excel:"name:身份证名称"`
|
|
CardCode string `excel:"name:身份证号码"`
|
|
Mobile string `excel:"name:电话"`
|
|
Province string `excel:"name:省"`
|
|
City string `excel:"name:市"`
|
|
Area string `excel:"name:区"`
|
|
Address string `excel:"name:详细地址"`
|
|
Remark string `excel:"name:备注"`
|
|
}
|