1
This commit is contained in:
@@ -16,23 +16,28 @@ const (
|
||||
)
|
||||
|
||||
type OrderComment struct {
|
||||
AddComment string `json:"add_comment"`
|
||||
AddCommentTime string `json:"add_comment_time"`
|
||||
CommentContent string `json:"comment_content"`
|
||||
CommentID int64 `json:"comment_id"`
|
||||
CommentLables string `json:"comment_lables"`
|
||||
CommentLableList []string `json:"comment_lable_list"`
|
||||
CommentPictures string `json:"comment_pictures"`
|
||||
CommentTime string `json:"comment_time"`
|
||||
CriticFoodList string `json:"critic_food_list"`
|
||||
DeliveryCommentScore int `json:"delivery_comment_score"`
|
||||
FoodCommentScore int `json:"food_comment_score"`
|
||||
OrderCommentScore int `json:"order_comment_score"`
|
||||
PackingScore int `json:"packing_score"`
|
||||
PraiseFoodList string `json:"praise_food_list"`
|
||||
ReplyStatus int `json:"reply_status"`
|
||||
Result string `json:"result"`
|
||||
ShipTime int `json:"ship_time"`
|
||||
AddComment string `json:"add_comment"`
|
||||
AddCommentTime string `json:"add_comment_time"`
|
||||
CommentContent string `json:"comment_content"`
|
||||
CommentID int64 `json:"comment_id"`
|
||||
CommentLables string `json:"comment_lables"`
|
||||
CommentLableList []string `json:"comment_lable_list"`
|
||||
CommentPictures string `json:"comment_pictures"`
|
||||
CommentTime string `json:"comment_time"`
|
||||
CriticFoodList string `json:"critic_food_list"`
|
||||
DeliveryCommentScore int `json:"delivery_comment_score"`
|
||||
FoodCommentScore int `json:"food_comment_score"`
|
||||
OrderCommentScore int `json:"order_comment_score"`
|
||||
PackingScore int `json:"packing_score"`
|
||||
PraiseFoodList string `json:"praise_food_list"`
|
||||
ReplyStatus int `json:"reply_status"`
|
||||
Result string `json:"result"`
|
||||
ShipTime int `json:"ship_time"`
|
||||
CommentOrderDetail []CommentOrderDetailList `json:"comment_order_detail"`
|
||||
}
|
||||
type CommentOrderDetailList struct {
|
||||
FoodName string `json:"food_name"`
|
||||
Count int `json:"count"`
|
||||
}
|
||||
|
||||
// 根据门店id批量查询评价信息(新版)
|
||||
|
||||
Reference in New Issue
Block a user