| | |
| | | package com.gkhy.exam.system.domain.vo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.gkhy.exam.system.domain.ItemReviewUser; |
| | | import com.gkhy.exam.system.domain.ProcessInspection; |
| | | import com.gkhy.exam.system.domain.ProductItem; |
| | | import com.gkhy.exam.system.domain.ProjectDocument; |
| | | import lombok.Data; |
| | | |
| | | import java.util.List; |
| | |
| | | private String stage; |
| | | private String reviewContent; |
| | | private String productItemIds; |
| | | private List<ProductItem> productItems; |
| | | private String processItemIds; |
| | | private List<ProjectDocument> projectDocuments; |
| | | private List<ProcessInspection> processInspections; |
| | | } |