From 8a3a1c0b838d3b532750dc7c69362c2f5b0e7132 Mon Sep 17 00:00:00 2001
From: heheng <475597332@qq.com>
Date: 星期一, 18 八月 2025 10:35:59 +0800
Subject: [PATCH] 部分新功能

---
 multi-system/src/main/java/com/gkhy/exam/system/domain/PurchaseApplyPlan.java |   53 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 53 insertions(+), 0 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
new file mode 100644
index 0000000..5016160
--- /dev/null
+++ b/multi-system/src/main/java/com/gkhy/exam/system/domain/PurchaseApplyPlan.java
@@ -0,0 +1,53 @@
+package com.gkhy.exam.system.domain;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableField;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Getter;
+import lombok.Setter;
+
+import java.io.Serializable;
+import java.math.BigDecimal;
+
+@Getter
+@Setter
+@TableName("purchase_apply_plan")
+@ApiModel(value = "purchaseApplyPlan",description = "采购申请")
+public class PurchaseApplyPlan implements Serializable {
+
+    @ApiModelProperty("主键")
+    @TableId(value = "id", type = IdType.AUTO)
+    private Integer id;
+
+    @ApiModelProperty(value = "申请id")
+    @TableField("apply_id")
+    private Integer applyId;
+
+    @ApiModelProperty(value = "品名")
+    @TableField("name")
+    private String name;
+
+    @ApiModelProperty(value = "型号规格")
+    @TableField("model")
+    private String model;
+
+    @ApiModelProperty(value = "建议供应商")
+    @TableField("supplier")
+    private String supplier;
+
+    @ApiModelProperty(value = "数量")
+    @TableField("amount")
+    private Integer amount;
+
+    @ApiModelProperty(value = "预计单价")
+    @TableField("money")
+    private BigDecimal money;
+
+    @ApiModelProperty(value = "分类")
+    @TableField("type")
+    private String type;
+
+}

--
Gitblit v1.9.2