“djh”
9 hours ago 2d9bf42ce507096c3b73a782da3ad16f29d2ccdc
multi-system/src/main/java/com/gkhy/exam/system/domain/OutsourcedReview.java
@@ -1,11 +1,6 @@
package com.gkhy.exam.system.domain;
import com.baomidou.mybatisplus.annotation.*;
import java.io.Serializable;
import java.time.LocalDateTime;
import java.util.List;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Getter;
@@ -13,6 +8,9 @@
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
import java.io.Serializable;
import java.time.LocalDateTime;
import java.util.List;
/**
 * <p>
@@ -38,6 +36,10 @@
    @NotNull(message = "公司id不能为空")
    private Long companyId;
    @ApiModelProperty(value = "年")
    @TableField(exist = false)
    private String year;
    @ApiModelProperty(value = "评审名称",required = true)
    @TableField("review_name")
    @NotBlank(message = "评审名称不能为空")
@@ -58,6 +60,17 @@
    @NotNull(message = "部门负责人id不能为空")
    private Integer deptLeaderId;
    @ApiModelProperty(value = "部门名称",required = true)
    @TableField("dept_name")
    @NotNull(message = "部门名称不能为空")
    private String deptName;
    @ApiModelProperty(value = "部门负责人名称",required = true)
    @TableField("dept_leader_name")
    @NotNull(message = "部门负责人名称不能为空")
    private String deptLeaderName;
    @ApiModelProperty(value = "外包过程",required = true)
    @TableField("outsourced_process")
    @NotBlank(message = "外包过程不能为空")