“djh”
2025-12-12 4653e7beddb6cf880154a1c99a3c786a43f2765c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.gkhy.exam.system.domain.vo;
 
import com.gkhy.exam.system.domain.ItemReviewUser;
import com.gkhy.exam.system.domain.ProductItem;
import lombok.Data;
 
import java.util.List;
 
@Data
public class ItemReviewUserVo extends ItemReviewUser {
    private String itemName;
    private String stage;
    private String reviewContent;
    private String productItemIds;
    private List<ProductItem> productItems;
}