puzhibing
2025-01-14 0b9eab450f484c397e9515f23c9954a1fe2f5065
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;
}