Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ConfirmDeliveryInfo ¶
type OrderItemExtraChargeInfo ¶ added in v1.7.0
type OrderItemExtraChargeInfo struct {
/* 购买用户pin (Optional) */
Name string `json:"name"`
/* 单位 (Optional) */
Unit string `json:"unit"`
/* 购买数量 (Optional) */
BuyNum int `json:"buyNum"`
/* 销售价格 (Optional) */
SellingPrice string `json:"sellingPrice"`
/* 结算价格 (Optional) */
SettlementPrice string `json:"settlementPrice"`
}
type ProductServiceVo ¶
type ProductServiceVo struct {
/* 交付单号 (Optional) */
DeliverNumber string `json:"deliverNumber"`
/* 订单号 (Optional) */
OrderNumber string `json:"orderNumber"`
/* 产品ID (Optional) */
ProductId int `json:"productId"`
/* sku ID (Optional) */
SkuId int `json:"skuId"`
/* sku名称 (Optional) */
SkuName string `json:"skuName"`
/* 服务code (Optional) */
ServiceCode string `json:"serviceCode"`
/* 数量 (Optional) */
Num int `json:"num"`
/* 周期 (Optional) */
Period int `json:"period"`
/* 周期类型 (Optional) */
PeriodType int `json:"periodType"`
/* 周期类型名称 (Optional) */
PeriodTypeName string `json:"periodTypeName"`
/* 账号数量 (Optional) */
AccountNum int `json:"accountNum"`
/* 交付状态 (Optional) */
DeliverStatus int `json:"deliverStatus"`
/* 交付状态名称 (Optional) */
DeliverStatusName string `json:"deliverStatusName"`
/* 服务生效时间,格式:yyyy-MM-dd HH:mm:ss (Optional) */
EffectiveDt string `json:"effectiveDt"`
/* 服务过期时间,格式:yyyy-MM-dd HH:mm:ss (Optional) */
FailureDt string `json:"failureDt"`
/* 商品属性 (Optional) */
ExtraInfo string `json:"extraInfo"`
/* 交付单备注 (Optional) */
Remark string `json:"remark"`
/* 订单金额 (Optional) */
OrderTotalFee string `json:"orderTotalFee"`
/* 订单实付金额 (Optional) */
OrderActualFee string `json:"orderActualFee"`
/* 订单支付时间 (Optional) */
PaymentDt string `json:"paymentDt"`
/* 额外计费项信息 (Optional) */
ExtraChargeInfo string `json:"extraChargeInfo"`
/* 额外计费详情信息 (Optional) */
OrderItemExtraChargeInfos []OrderItemExtraChargeInfo `json:"orderItemExtraChargeInfos"`
}
type ProductServiceVoListData ¶
type ProductServiceVoListData struct {
/* 页码 (Optional) */
PageNo int `json:"pageNo"`
/* 每页记录数 (Optional) */
PageSize int `json:"pageSize"`
/* 总记录数 (Optional) */
TotalRecord int `json:"totalRecord"`
/* 总页数 (Optional) */
TotalPage int `json:"totalPage"`
/* 交付单信息列表 (Optional) */
DataList []ProductServiceVo `json:"dataList"`
}
type StoreServiceDetailVo ¶ added in v1.7.0
type StoreServiceDetailVo struct {
/* 商品spu对应的id (Optional) */
SpuId int `json:"spuId"`
/* 商品sku对应的id (Optional) */
SkuId int `json:"skuId"`
/* 滚存天数 (Optional) */
StoreDays int `json:"storeDays"`
/* 开始时间,格式:yyyy-MM-dd HH:mm:ss (Optional) */
StartTime string `json:"startTime"`
/* 结束时间,格式:yyyy-MM-dd HH:mm:ss (Optional) */
EndTime string `json:"endTime"`
}
type StoreServiceVo ¶ added in v1.7.0
type StoreServiceVo struct {
/* 购买用户pin (Optional) */
BuyerPin string `json:"buyerPin"`
/* 业务数据,下单时传入的 (Optional) */
BusinessData string `json:"businessData"`
/* 云存服务明细列表 (Optional) */
StoreServiceDetails []StoreServiceDetailVo `json:"storeServiceDetails"`
/* 订单数量 (Optional) */
OrderNum int `json:"orderNum"`
/* 更新时间,格式:yyyy-MM-dd HH:mm:ss (Optional) */
UpdateTime string `json:"updateTime"`
}
Click to show internal directories.
Click to hide internal directories.