| | |
| | | package com.gkhy.exam.system.domain.req; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.gkhy.exam.system.domain.ProjectDocument; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | @ApiModel(value = "CatalogueProjectDocumentReq",description = "项目文档") |
| | | public class CatalogueProjectDocumentReq { |
| | | private Integer companyId; |
| | | private Integer catalogueId; |
| | | private Integer itemId; |
| | | @ApiModelProperty(value = "文档类型3涉及开发过程11项目策划目录12生产过程目录13不合格品目录") |
| | | private Integer type; |
| | | private List<ProjectDocument> projectDocuments; |
| | | } |