“djh”
4 天以前 7acaebcb01438578ded72491f39105db893982ef
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
55
56
57
58
59
60
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.Data;
 
import java.io.Serializable;
import java.time.LocalDate;
 
@Data
@TableName("catalogue_data_file")
@ApiModel(value = "catalogue_data_file",description = "质量管理体系运行目录")
public class CatalogueDataFile implements Serializable {
 
    @ApiModelProperty("主键")
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    @TableField(value = "catalogue_data_id")
    private Integer catalogueDataId;
 
    @TableField(value = "company_id")
    private Integer companyId;
    @TableField(value = "catalogue_id")
    private Integer catalogueId;
 
    @TableField(value = "name")
    private String name;
 
    @TableField(value = "file_path")
    private String filePath;
    @TableField(value = "file_name")
    private String fileName;
 
    @TableField(value = "type")
    private Integer type;
 
    @TableField(value = "del_flag")
    private Integer delFlag;
 
    @TableField(value = "create_by")
    private String createBy;
 
    @TableField(value = "create_time")
    private LocalDate createTime;
 
    @TableField(value = "update_by")
    private String updateBy;
 
    @TableField(value = "update_time")
    private LocalDate updateTime;
 
 
 
 
}