From af31f0a78ec1932cec1a7e99482e7d850e60576e Mon Sep 17 00:00:00 2001
From: heheng <475597332@qq.com>
Date: 星期四, 27 十一月 2025 17:23:17 +0800
Subject: [PATCH] 功能修改

---
 multi-system/src/main/java/com/gkhy/exam/system/domain/PurchaseApplyPlan.java |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/multi-system/src/main/java/com/gkhy/exam/system/domain/PurchaseApplyPlan.java b/multi-system/src/main/java/com/gkhy/exam/system/domain/PurchaseApplyPlan.java
index 5016160..1be4181 100644
--- a/multi-system/src/main/java/com/gkhy/exam/system/domain/PurchaseApplyPlan.java
+++ b/multi-system/src/main/java/com/gkhy/exam/system/domain/PurchaseApplyPlan.java
@@ -9,6 +9,7 @@
 import lombok.Getter;
 import lombok.Setter;
 
+import javax.validation.constraints.NotNull;
 import java.io.Serializable;
 import java.math.BigDecimal;
 
@@ -22,7 +23,8 @@
     @TableId(value = "id", type = IdType.AUTO)
     private Integer id;
 
-    @ApiModelProperty(value = "申请id")
+    @NotNull(message = "申请主键不可为空")
+    @ApiModelProperty(value = "申请id",required = true)
     @TableField("apply_id")
     private Integer applyId;
 

--
Gitblit v1.9.2