heheng
2025-11-26 5011ebf747ddfa41840b352c9e39cf369a8f047c
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;
}