daShangDao_psiServer/models/response/store_info.go

13 lines
849 B
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package response
// StoreInfoResponse 店铺统计响应(每条记录对应一个店铺)
type StoreInfoResponse struct {
StoreName string `json:"store_name"` // 店铺名称
StoreType string `json:"store_type"` // 店铺类型描述
SaleAmount int64 `json:"sale_amount"` // 销售金额(时间范围内该店铺的销售订单总金额,单位:分)
OutboundCount int64 `json:"outbound_count"` // 出库次数(当前表结构无店铺维度,暂返回 0
ReceivingCount int64 `json:"receiving_count"` // 入库次数(当前表结构无店铺维度,暂返回 0
OrderCount int64 `json:"order_count"` // 订单数量(同 sale_count从 sales_order 表统计)
ShippingCount int64 `json:"shipping_count"` // 发货次数(当前表结构无店铺维度,暂返回 0
}