puzhibing
2024-12-18 88a30d1fc3bc9660494130e7b393711e3f9aefce
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;
}