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 java.io.Serializable; import java.time.LocalDateTime; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Getter; import lombok.Setter; import javax.validation.constraints.NotBlank; import javax.validation.constraints.NotNull; /** *

* 管理评审会议、输入、报告 *

* * @author hh * @since 2025-07-10 15:11:50 */ @Getter @Setter @TableName("management_review") @ApiModel(value = "ManagementReview对象", description = "管理评审会议、输入、报告") public class ManagementReview implements Serializable { private static final long serialVersionUID = 1L; @TableId(value = "id", type = IdType.AUTO) private Long id; @ApiModelProperty("企业id") @TableField("company_id") @NotNull(message = "企业Id不可为空") private Integer companyId; @ApiModelProperty("企业名称") @TableField("company_name") private String companyName; @ApiModelProperty("0否1是") @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; @ApiModelProperty("文件名称") @TableField("review_name") @NotBlank(message = "文件名称不可为空") private String reviewName; @ApiModelProperty("1会议、2输入、3报告") @TableField("review_type") @NotNull(message = "文件类型不可为空") private Integer reviewType; @ApiModelProperty("附件地址") @TableField("file_path") private String filePath; @ApiModelProperty("格式") @TableField("format") private String format; @ApiModelProperty("年份") @TableField("year") @NotBlank(message = "年份不可为空") private String year; }