From 8d6b17bfa56fd767c6f9de666eb0dd44c6b032cd Mon Sep 17 00:00:00 2001
From: 廖井涛 <2265517004@qq.com>
Date: 星期四, 22 五月 2025 15:42:38 +0800
Subject: [PATCH] Merge branch 'master' of http://10.153.19.25:10101/r/ERP_override
---
north-glass-erp/src/main/java/com/example/erp/entity/mm/FinishedGoodsInventory.java | 37 +++++++++++++++----------------------
1 files changed, 15 insertions(+), 22 deletions(-)
diff --git a/north-glass-erp/src/main/java/com/example/erp/entity/mm/FinishedGoodsInventory.java b/north-glass-erp/src/main/java/com/example/erp/entity/mm/FinishedGoodsInventory.java
index 6763729..1e3763b 100644
--- a/north-glass-erp/src/main/java/com/example/erp/entity/mm/FinishedGoodsInventory.java
+++ b/north-glass-erp/src/main/java/com/example/erp/entity/mm/FinishedGoodsInventory.java
@@ -2,8 +2,7 @@
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
-import com.example.erp.entity.sd.Customer;
-import com.example.erp.entity.sd.Order;
+import com.example.erp.entity.sd.*;
import lombok.Data;
import java.time.LocalDate;
@@ -13,28 +12,22 @@
@TableId(type = IdType.AUTO)
private Long id;
- private Integer deliveryState;
- private Integer stockState;
- private String deliveryId;
- private String project;
- private String customerName;
- private LocalDate deliveryDate;
- private String payMethod;
- private LocalDate payDate;
- private String salaManId;
- private String salaMan;
- private String createrId;
- private String creator;
- private String contacts;
- private String contactNumber;
- private String deliveryAddress;
+ private String orderId;
+ private Integer orderNumber;
+ private Integer inventory;
+ private Double actualSignalArea;
private Double area;
- private Integer quantity;
- private Double money;
- private String remarks;
- private LocalDate createTime;
+ private Integer quantityAvailable;
+ private String warehouseNumber;
+ private String storageRegion;
+ private Integer status;
+ private LocalDate enterStorageTime;
+ private String remark;
private LocalDate updateTime;
+ private LocalDate endTime;
+ private String processId;
+
private Order order;
- private Customer customer;
+ private OrderDetail orderDetail;
}
--
Gitblit v1.8.0