This commit is contained in:
2024-09-30 14:41:27 +08:00
parent 9502903793
commit 64ea8da4fe
2 changed files with 48 additions and 2 deletions

View File

@@ -73,7 +73,7 @@ type ProductListItem struct {
SaleCreatedAt *time.Time `json:"saleCreatedAt"`
PurchasedCount int64 `json:"purchasedCount"`
ShipmentCount int64 `json:"shipmentCount"`
ShipmentdCount int64 `json:"shipmentdCount"`
ShippedCount int64 `json:"shippedCount"`
}
// List @TITLE 产品列表
@@ -122,7 +122,9 @@ type ProductItem struct {
PurchaseCount int64 `json:"purchaseCount"`
PurchasedCount int64 `json:"purchasedCount"`
ShipmentCount int64 `json:"shipmentCount"`
ShipmentdCount int64 `json:"shipmentdCount"`
ShippedCount int64 `json:"shippedCount"`
AccountingCount int64 `json:"accountingCount"`
AccountedCount int64 `json:"accountedCount"`
CreatedAt *time.Time `json:"createdAt"`
UpdatedAt *time.Time `json:"updatedAt"`
Children []*ProductItem `json:"children"`
@@ -256,6 +258,12 @@ type ReplyProductInfo struct {
PackageDescription string `json:"packageDescription"`
PackageEngDescription string `json:"packageEngDescription"`
PackageInfoFile bean2.FileData `json:"packageInfoFile"`
PurchaseCount int64 `json:"purchaseCount"`
PurchasedCount int64 `json:"purchasedCount"`
ShipmentCount int64 `json:"shipmentCount"`
ShippedCount int64 `json:"shippedCount"`
AccountingCount int64 `json:"accountingCount"`
AccountedCount int64 `json:"accountedCount"`
CreatedAt *time.Time `json:"createdAt"`
UpdatedAt *time.Time `json:"updatedAt"`
Packages []ProductPackageInfo `json:"packages"`