“djh”
2025-11-25 f9feae49eee21286708bcef1cea91be34d9e9241
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
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 = "项目id")
    @TableField("file_name")
    private String fileName;
 
    @ApiModelProperty(value = "项目id")
    @TableField("file_path")
    private String filePath;
 
    private Integer del_flag;
 
 
 
 
 
 
 
 
}