bizordlist

package
v0.0.0-...-905ac7b Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 29, 2024 License: GPL-3.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type BizOrdListRequest

type BizOrdListRequest struct {
	/**
	 * 日期,yyyyMMdd格式
	 */
	Dt string `json:"dt"`
	/**
	 * 页数,从1开始
	 */
	PageNum int32 `json:"pageNum"`
	/**
	 * 一页数量,不能超过200
	 */
	PageSize int32 `json:"pageSize"`
}

func (*BizOrdListRequest) DoInvoke

type BizOrdListResponse

type BizOrdListResponse struct {
	Code    string `json:"code"`
	Msg     string `json:"msg"`
	Data    Data   `json:"data"`
	TraceId string `json:"traceId"`
}

func (*BizOrdListResponse) IsSuccess

func (response *BizOrdListResponse) IsSuccess() bool

type Data

type Data struct {
	Result  Result    `json:"result"`
	Count   int64     `json:"count"`
	OrdList []OrdList `json:"ordList"`
}

type OrdList

type OrdList struct {
	WmOrderViewId int64  `json:"wmOrderViewId"`
	OriginalPrice int64  `json:"originalPrice"`
	ActualPrice   int64  `json:"actualPrice"`
	ShippingFee   int64  `json:"shippingFee"`
	OrderTime     string `json:"orderTime"`
	/**
	 * json字符串,foodId&food名称
	 */
	FoodSet string `json:"foodSet"`
	/**
	 * json字符串
	 */
	ActSet string `json:"actSet"`
	Dt     int64  `json:"dt"`
}

type Result

type Result struct {
	Success bool   `json:"success"`
	Code    string `json:"code"`
	Message string `json:"message"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL