无关风月
2025-01-15 a1d5268502e9c98ebe7f469bd142fe3330629131
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;
}