“djh”
2026-02-03 9fa1e9aa80718718c2991b5fb32db0dd50ef1248
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>
@@ -58,6 +56,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 = "外包过程不能为空")