123456789101112131415161718192021222324252627282930 |
- package http_model
- type GetInvoiceRecordRequest struct {
- BillingAt string `json:"billing_at"`
- }
- type InvoiceRecordsPreviews struct {
- BillingId string `json:"billing_id"`
- Amount float64 `json:"amount"`
- InvoiceType string `json:"invoice_type"`
- InvoiceInfo string `json:"invoice_info"`
- AddressInfo string `json:"address_info"`
- ShipmentNumber string `json:"shipment_number"` // 物流单号
- BillingAt string `json:"billing_at"`
- }
- type InvoiceRecordsData struct {
- InvoiceRecordsPreviews []*InvoiceRecordsPreviews `json:"invoice_records_previews"`
- Total string `json:"total"`
- }
- func NewGetInvoiceRecordRequest() *GetInvoiceRecordRequest {
- return new(GetInvoiceRecordRequest)
- }
- func NewGetInvoiceRecordResponse() *CommonResponse {
- resp := new(CommonResponse)
- resp.Data = new(InvoiceRecordsData)
- return resp
- }
|