package com.gkhy.exam.system.domain; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Getter; import lombok.Setter; @Getter @Setter @TableName("project_document") @ApiModel(value = "projectDocument",description = "项目文档") public class ProjectDocument { @ApiModelProperty("主键") @TableId(value = "id", type = IdType.AUTO) private Integer id; @TableField("company_id") private Integer companyId; @ApiModelProperty(value = "项目id") @TableField("catalogue_id") private Integer catalogueId; @ApiModelProperty(value = "项目id") @TableField("item_id") private Integer itemId; @ApiModelProperty(value = "附件名称") @TableField("file_name") private String fileName; @ApiModelProperty(value = "附件地址") @TableField("file_path") private String filePath; @ApiModelProperty(value = "文档类型 3涉及开发过程11项目策划目录12生产过程目录13不合格品目录") @TableField("document_type") private Integer documentType; private Integer del_flag; }