13 lines
828 B
Go
13 lines
828 B
Go
package response
|
||
|
||
// StoreInfoResponse 店铺统计响应(每条记录对应一个店铺)
|
||
type StoreInfoResponse struct {
|
||
StoreName string `json:"store_name"` // 店铺名称
|
||
StoreType string `json:"store_type"` // 店铺类型描述
|
||
SaleCount int64 `json:"sale_count"` // 销售数量(时间范围内该店铺的销售订单数)
|
||
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)
|
||
}
|