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; }