fix:修复参数错误

master v1.0.1
大虾 3 years ago
parent 9e7d3e38ab
commit 17d0bbf937

@ -41,7 +41,7 @@ type OperatorNode struct {
Content string `json:"content"` Content string `json:"content"`
GroupState string `json:"groupState"` GroupState string `json:"groupState"`
ScanState string `json:"scanState"` ScanState string `json:"scanState"`
MsgTime string `json:"msgTime"` MsgTime int64 `json:"msgTime"`
SystemOperator string `json:"systemOperator"` SystemOperator string `json:"systemOperator"`
OrderID uint `json:"orderId"` OrderID uint `json:"orderId"`
} }

@ -64,6 +64,5 @@ func (o areaStockState) String() string {
type StockState struct { type StockState struct {
AreaStockState areaStockState `json:"areaStockState"` AreaStockState areaStockState `json:"areaStockState"`
LeadTime string `json:"leadTime"`
SkuQuantity SkuQuantity `json:"skuQuantity"` SkuQuantity SkuQuantity `json:"skuQuantity"`
} }

@ -33,7 +33,7 @@ type QueryInvoiceInfoResponse struct {
type InvoiceDetail struct { type InvoiceDetail struct {
Valid string `json:"valid"` Valid string `json:"valid"`
TaxRate float64 `json:"taxRate"` TaxRate float64 `json:"taxRate"`
UpdateTime string `json:"updateTime"` UpdateTime int64 `json:"updateTime"`
Remark string `json:"remark"` Remark string `json:"remark"`
IvcCode string `json:"ivcCode"` IvcCode string `json:"ivcCode"`
IvcContentType uint `json:"ivcContentType"` IvcContentType uint `json:"ivcContentType"`
@ -41,7 +41,7 @@ type InvoiceDetail struct {
IvcContentName string `json:"ivcContentName"` IvcContentName string `json:"ivcContentName"`
FileUrl string `json:"fileUrl"` FileUrl string `json:"fileUrl"`
ExpandColumn string `json:"expandColumn"` ExpandColumn string `json:"expandColumn"`
IvcTime string `json:"ivcTime"` IvcTime int64 `json:"ivcTime"`
IvcNo string `json:"ivcNo"` IvcNo string `json:"ivcNo"`
IvcType uint `json:"ivcType"` IvcType uint `json:"ivcType"`
TotalTaxPrice float64 `json:"totalTaxPrice"` TotalTaxPrice float64 `json:"totalTaxPrice"`

@ -131,9 +131,9 @@ type BaseOrder struct {
RootOrderID uint `json:"rootOrderId"` RootOrderID uint `json:"rootOrderId"`
OrderStatus status `json:"orderStatus"` OrderStatus status `json:"orderStatus"`
SubmitTime int64 `json:"submitTime"` SubmitTime int64 `json:"submitTime"`
CompleteTime string `json:"completeTime"` CompleteTime int64 `json:"completeTime"`
PayTime int64 `json:"payTime"` PayTime int64 `json:"payTime"`
OutWarehouseTime string `json:"outWarehouseTime"` OutWarehouseTime int64 `json:"outWarehouseTime"`
PaymentType uint `json:"PaymentType"` PaymentType uint `json:"PaymentType"`
Remark string `json:"remark"` Remark string `json:"remark"`
OrderType typeState `json:"orderType"` OrderType typeState `json:"orderType"`

@ -44,11 +44,11 @@ type PayInfoParam struct {
type RefundDetail struct { type RefundDetail struct {
RefundFee float64 `json:"refundFee"` RefundFee float64 `json:"refundFee"`
RefundType uint `json:"refundType"` RefundType uint `json:"refundType"`
RefundTime string `json:"refundTime"` RefundTime int64 `json:"refundTime"`
} }
type PaidDetail struct { type PaidDetail struct {
PaidInType uint `json:"paidInType"` PaidInType uint `json:"paidInType"`
PaidInTime string `json:"paidInTime"` PaidInTime int64 `json:"paidInTime"`
PaidInFee float64 `json:"paidInFee"` PaidInFee float64 `json:"paidInFee"`
} }

@ -122,7 +122,7 @@ type BookSkuBase struct {
Id string `json:"id"` Id string `json:"id"`
Brand string `json:"brand"` Brand string `json:"brand"`
Letters string `json:"letters"` Letters string `json:"letters"`
PublishTime string `json:"publishTime"` PublishTime int64 `json:"publishTime"`
BatchNo string `json:"batchNo"` BatchNo string `json:"batchNo"`
Author string `json:"author"` Author string `json:"author"`
ISSN string `json:"ISSN"` ISSN string `json:"ISSN"`
@ -137,6 +137,6 @@ type BookSkuBase struct {
PublishNo string `json:"publishNo"` PublishNo string `json:"publishNo"`
Series string `json:"series"` Series string `json:"series"`
Editer string `json:"editer"` Editer string `json:"editer"`
PrintTime string `json:"printTime"` PrintTime int64 `json:"printTime"`
Photography string `json:"photography"` Photography string `json:"photography"`
} }

Loading…
Cancel
Save