From 55f7e6cdbd00b0ab4a98fb8edde83e16a423baaa Mon Sep 17 00:00:00 2001
From: “djh” <“3298565835@qq.com”>
Date: Wed, 29 Apr 2026 15:17:36 +0800
Subject: [PATCH] 修改minio配置
---
multi-system/src/main/java/com/gkhy/exam/system/domain/OutsourcedReview.java | 19 ++++++++++++++-----
1 files changed, 14 insertions(+), 5 deletions(-)
diff --git a/multi-system/src/main/java/com/gkhy/exam/system/domain/OutsourcedReview.java b/multi-system/src/main/java/com/gkhy/exam/system/domain/OutsourcedReview.java
index dff74ff..f9889bc 100644
--- a/multi-system/src/main/java/com/gkhy/exam/system/domain/OutsourcedReview.java
+++ b/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 = "外包过程不能为空")
--
Gitblit v1.9.2