This commit is contained in:
邹宗楠
2024-07-18 14:27:31 +08:00
parent 942fb6f3ab
commit 42108e9793
2 changed files with 19 additions and 6 deletions

View File

@@ -34,6 +34,14 @@ type OrderComment struct {
Result string `json:"result"`
ShipTime int `json:"ship_time"`
CommentOrderDetail []CommentOrderDetailList `json:"comment_order_detail"`
PraiseRetailList []RetailList `json:"praise_retail_list"` // 点赞商品列表
CriticRetailList []RetailList `json:"critic_retail_list"` // 点踩商品列表
}
type RetailList struct {
AppSpCode string `json:"app_sp_code"` // app方商品ID
SkuId string `json:"sku_id"`
Name string `json:"name"`
}
type CommentOrderDetailList struct {
FoodName string `json:"food_name"`