From 3910076c03c81cc518cd6eabc7b4d34088db2936 Mon Sep 17 00:00:00 2001 From: timerzz <zhhgzhhgzhhg@163.com> Date: Sat, 29 Mar 2025 20:48:23 +0800 Subject: [PATCH] =?UTF-8?q?update=20article=E6=B7=BB=E5=8A=A0=E6=AF=9B?= =?UTF-8?q?=E5=88=A9=E6=B6=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg/coach-client/ca_test.go | 4 ++-- structs/v2/article.go | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/pkg/coach-client/ca_test.go b/pkg/coach-client/ca_test.go index 26ab401..d1338ff 100644 --- a/pkg/coach-client/ca_test.go +++ b/pkg/coach-client/ca_test.go @@ -22,9 +22,9 @@ func TestCAClient(t *testing.T) { //} //t.Log(resp) - resp, err := client.RequestProductDetailList(ctx, "CK535-WEC", "CP081-SVVSW", "C9949-SVVDT", "CM235-SVELC", "CP081-JIBLK", "CAA92-IMCHR", "C9949-SVQVE", "CW637-B4CED") + inv, err := client.RequestProductDetail(ctx, "CP150-LHBLK") if err != nil { t.Fatal(err) } - t.Log(resp) + t.Log(inv) } diff --git a/structs/v2/article.go b/structs/v2/article.go index 0d3a33d..05df634 100644 --- a/structs/v2/article.go +++ b/structs/v2/article.go @@ -42,7 +42,8 @@ type Article struct { // 销售商报价列表 Sellers []SellerArticle `json:"sellers" gorm:"foreignKey:ArticleID"` // 利润率 - Rate float64 `json:"rate" gorm:"index"` //利润率 + Rate float64 `json:"rate" gorm:"index"` //利润率 + GrossProfit float64 `json:"grossProfit"` //毛利润 //备注 Remark string `json:"remark"` }