From 4e05db79b1d981677b8a2664f252dfccf95ef6ce Mon Sep 17 00:00:00 2001
From: “djh” <“3298565835@qq.com”>
Date: 星期四, 30 十月 2025 13:35:01 +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