heheng
2025-11-28 03a3edee9ff27fa9bb4b32dcda08e279c7c094c8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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;
 
 
 
 
 
 
 
 
}