puzhibing
2024-12-17 4bc54f596a7f47dcf65fa2f78484a4fd3b2e76b2
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;
}