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("item_review") @ApiModel(value = "ItemReview", description = "项目评审") public class ItemReview implements Serializable { @ApiModelProperty("主键") @TableId(value = "id", type = IdType.AUTO) private Integer id; @ApiModelProperty(value = "企业id") @TableField("company_id") private Long companyId; @ApiModelProperty(value = "项目id") @TableField("item_id") private Integer itemId; @TableField(exist = false) private String itemName; @ApiModelProperty(value = "项目id") @TableField("num") private String num; @ApiModelProperty(value = "项目id") @TableField("file_name") private String fileName; @ApiModelProperty(value = "项目id") @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; }