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.LocalDateTime; @Data @TableName("product_item") @ApiModel(value = "ProductItem对象", description = "产品类和项目类") public class ProductItem implements Serializable { @ApiModelProperty("主键") @TableId(value = "id", type = IdType.AUTO) private Integer id; @TableField("catalogue_id") private Integer catalogueId; @TableField(exist = false) private String catalogueName; @TableField("company_id") private Integer companyId; @TableField(exist = false) private String companyName; @ApiModelProperty(value = "文件编号") @TableField("number") private String number; @ApiModelProperty(value = "编写指南") @TableField("erdact") private String erdact; @ApiModelProperty(value = "数据类型 1产品 2项目") @TableField("type") private Integer type; @ApiModelProperty(value = "文件名称") @TableField("file_name") private String fileName; @ApiModelProperty(value = "文件路径") @TableField("file_path") private String filePath; @TableField("del_flag") private Integer delFlag; @TableField("create_by") private String createBy; @TableField("create_time") private LocalDateTime createTime; @TableField("update_by") private String updateBy; @TableField("update_time") private LocalDateTime updateTime; }