From 0219f0fc8f8b79cb50a9e1004b10d63a0edbb9dd Mon Sep 17 00:00:00 2001
From: rentaiming <806181062@qq.com>
Date: 星期五, 28 六月 2024 13:56:05 +0800
Subject: [PATCH] 森林防火 供应商管理

---
 ruoyi-modules/ruoyi-management/src/main/java/com/ruoyi/management/domain/SlVolumeProductionRk.java |   16 ++++++++++++----
 1 files changed, 12 insertions(+), 4 deletions(-)

diff --git a/ruoyi-modules/ruoyi-management/src/main/java/com/ruoyi/management/domain/SlVolumeProductionRk.java b/ruoyi-modules/ruoyi-management/src/main/java/com/ruoyi/management/domain/SlVolumeProductionRk.java
index 2b8ef53..b60fe81 100644
--- a/ruoyi-modules/ruoyi-management/src/main/java/com/ruoyi/management/domain/SlVolumeProductionRk.java
+++ b/ruoyi-modules/ruoyi-management/src/main/java/com/ruoyi/management/domain/SlVolumeProductionRk.java
@@ -25,12 +25,16 @@
 @ApiModel(value = "SlVolumeProductionRk对象", description = "发起入库管理")
 public class SlVolumeProductionRk {
 
-    @TableId(value = "id", type = IdType.AUTO)
-    private Integer id;
+    @TableId(value = "id", type = IdType.ASSIGN_ID)
+    private Long id;
+
+    @ApiModelProperty("入管理主表id")
+    @TableField("volume_production_rkgl_id")
+    private Long VolumeProductionRkglId;
 
     @ApiModelProperty("物资id")
     @TableField("materials_id")
-    private Integer materialsId;
+    private Long materialsId;
 
     @ApiModelProperty("入库数量")
     @TableField("rk_num")
@@ -50,7 +54,7 @@
 
     @ApiModelProperty("货架id")
     @TableField("shelf_id")
-    private Integer shelfId;
+    private Long shelfId;
 
     @ApiModelProperty("删除标志(0代表存在 2代表删除)")
     @TableField("del_flag")
@@ -72,5 +76,9 @@
     @TableField("update_time")
     private Date updateTime;
 
+    @ApiModelProperty("二维码数量")
+    @TableField("erwm_num")
+    private Integer erwmNum;
+
 
 }

--
Gitblit v1.7.1