heheng
2025-11-19 735d0737c850cb4385d99fb18f485a5e6c7efbb4
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;
}