heheng
2025-11-28 03a3edee9ff27fa9bb4b32dcda08e279c7c094c8
multi-system/src/main/java/com/gkhy/exam/system/domain/req/CatalogueProjectDocumentReq.java
@@ -1,14 +1,20 @@
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;
}