puzhibing
2025-01-14 685c1ab4e9698f4a1e0e942069ca8b3541502e3c
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.ruoyi.other.vo;
 
import com.ruoyi.other.api.domain.GoodsEvaluate;
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
import java.util.List;
 
@Data
@ApiModel(value = "商品评价")
public class GoodsEvaluateVO {
    private List<GoodsEvaluate> evaluates;
}