From b3cbeec348e826813c176340f1b0010bb2ece2cd Mon Sep 17 00:00:00 2001
From: cnf <3200815559@qq.com>
Date: 星期三, 12 二月 2025 16:13:55 +0800
Subject: [PATCH] 新增销售订单保存接口,销售退货通知单保存接口,销售发货通知单保存接口

---
 MES.Service/Dto/webApi/ErpSalesOrderDetail.cs |   37 +++++++++++++++++++++++++++++++++++++
 1 files changed, 37 insertions(+), 0 deletions(-)

diff --git a/MES.Service/Dto/webApi/ErpSalesOrderDetail.cs b/MES.Service/Dto/webApi/ErpSalesOrderDetail.cs
new file mode 100644
index 0000000..89f584e
--- /dev/null
+++ b/MES.Service/Dto/webApi/ErpSalesOrderDetail.cs
@@ -0,0 +1,37 @@
+锘縩amespace MES.Service.Dto.webApi
+{
+    public class ErpSalesOrderDetail
+    {
+        public string? Id { get; set; }
+        public string? Type { get; set; }
+        public string? FMaterialId { get; set; }
+        public string? FUnitID { get; set; }
+        public string? FQty { get; set; }
+        public string? FPriceUnitId { get; set; }
+        public string? FPriceUnitQty { get; set; }
+        public string? FDeliveryDate { get; set; }
+        public string? FIsFree { get; set; }
+        public string? FOwnerTypeId { get; set; }
+        public string? FOwnerId { get; set; }
+        public string? FEntryNote { get; set; }
+        public string? FMtoNo { get; set; }
+        public string? FLot { get; set; }
+        public string? FDeliveryMaxQty { get; set; }
+        public string? FDeliveryMinQty { get; set; }
+        public string? FOutLmtUnitID { get; set; }
+        public string? FMrpCloseStatus { get; set; }
+        public string? FMrpTerminateStatus { get; set; }
+        public string? FTerminateDate { get; set; }
+        public string? FTerminaterId { get; set; }
+        public string? FSrcType { get; set; }
+        public string? FSrcBillNo { get; set; }
+        public string? FDeliQty { get; set; }
+        public string? FStockOutQty { get; set; }
+        public string? FBaseRetNoticeQty { get; set; }
+        public string? FBaseReturnQty { get; set; }
+        public string? FBaseRemainOutQty { get; set; }
+        public string? FBASEARQTY { get; set; }
+        public string? ErpID { get; set; }
+        public string? EHID { get; set; }
+    }
+}

--
Gitblit v1.9.3