From 256f758a45c9b00a9248b02345ee1d6f52869e08 Mon Sep 17 00:00:00 2001
From: maven <2163098428@qq.com>
Date: 星期三, 05 十一月 2025 09:36:58 +0800
Subject: [PATCH] yys 1.导出接口开发 2.营销管理-回款登记-回款状态(回款完成,未完成) 3.采购管理-付款登记-加一个付款进度 4.采购管理-付款流水-采购合同号筛选 5.仓储物流-所有-查询条件加一个日期 6.仓储物流-入库管理-加一个库存预警数量字段 7.生产管控-生产订单-加一个订单状态-已完成、未完成 8.协同办公-通知公告-加一个时间限制,过时后状态改为已过期

---
 src/main/java/com/ruoyi/warehouse/pojo/WarehouseGoodsShelvesRowcol.java |   32 +++++++++++++++-----------------
 1 files changed, 15 insertions(+), 17 deletions(-)

diff --git a/src/main/java/com/ruoyi/warehouse/pojo/WarehouseGoodsShelvesRowcol.java b/src/main/java/com/ruoyi/warehouse/pojo/WarehouseGoodsShelvesRowcol.java
index da8df11..4372314 100644
--- a/src/main/java/com/ruoyi/warehouse/pojo/WarehouseGoodsShelvesRowcol.java
+++ b/src/main/java/com/ruoyi/warehouse/pojo/WarehouseGoodsShelvesRowcol.java
@@ -1,9 +1,7 @@
 package com.ruoyi.warehouse.pojo;
 
-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 com.baomidou.mybatisplus.annotation.*;
+
 import java.io.Serializable;
 import java.time.LocalDateTime;
 import java.util.Date;
@@ -19,25 +17,25 @@
 @Data
 @ApiModel(value = "浠撳簱璐ф灦灞傦紝鍒楄〃")
 public class WarehouseGoodsShelvesRowcol implements Serializable {
+
     private static final long serialVersionUID = 1L;
     /**
      * 
      */
     @TableId(value = "id", type = IdType.AUTO)
     private Long id;
-    /**
-     * 鏂囨。id
-     */
-    private Long documentationId;
+
     /**
      * 灞傛暟
      */
-    private Long storey;
+    @TableField("`row`")
+    private Long row;
 
     /**
      * 鍒楁暟
      */
-    private Long arrange;
+    @TableField("`col`")
+    private Long col;
 
     /**
      * 璐ф灦id
@@ -45,33 +43,33 @@
     private Long warehouseGoodsShelvesId;
 
     /**
-     * 浠撳簱id
-     */
-    private Long warehouseId;
-
-    /**
      * 鍒涘缓鏃堕棿
      */
+    @TableField(fill = FieldFill.INSERT)
     private LocalDateTime createTime;
 
     /**
      * 鍒涘缓鐢ㄦ埛
      */
-    private Long createUser;
+    @TableField(fill = FieldFill.INSERT)
+    private Integer createUser;
 
     /**
      * 淇敼鏃堕棿
      */
+    @TableField(fill = FieldFill.INSERT_UPDATE)
     private LocalDateTime updateTime;
 
     /**
      * 淇敼鐢ㄦ埛
      */
-    private Long updateUser;
+    @TableField(fill = FieldFill.INSERT)
+    private Integer updateUser;
 
     /**
      * 绉熸埛ID
      */
+    @TableField(fill = FieldFill.INSERT)
     private Long tenantId;
     /**
      * 澶囨敞

--
Gitblit v1.9.3