From e08786579903aba72be57fab1024980bf737dfbd Mon Sep 17 00:00:00 2001
From: 啊鑫 <t2856754968@163.com>
Date: 星期三, 25 九月 2024 09:42:02 +0800
Subject: [PATCH] 委外订单接口更新

---
 MESApplication/bin/Release/net8.0/MESApplication.exe              |    0 
 MESApplication/bin/Release/net8.0/publish/MESApplication.pdb      |    0 
 MESApplication/bin/Debug/net8.0/MES.Service.pdb                   |    0 
 MESApplication/bin/Release/net8.0/MESApplication.xml              |   20 
 MESApplication/bin/Release/net8.0/publish/MESApplication.dll      |    0 
 MESApplication/bin/Debug/net8.0/MES.Service.dll                   |    0 
 MESApplication/bin/Debug/net8.0/MESApplication.pdb                |    0 
 MESApplication/bin/Release/net8.0/MES.Service.dll                 |    0 
 MESApplication/bin/Release/net8.0/MESApplication.dll              |    0 
 MESApplication/bin/Release/net8.0/publish/MES.Service.pdb         |    0 
 MESApplication/bin/Release/net8.0/MES.Service.pdb                 |    0 
 MESApplication/bin/Release/net8.0/publish/MESApplication.exe      |    0 
 MESApplication/bin/Release/net8.0/MESApplication.pdb              |    0 
 MES.Service/bin/Debug/net8.0/MES.Service.pdb                      |    0 
 MESApplication/bin/Release/net8.0/publish/MES.Service.dll         |    0 
 MESApplication/bin/Release/net8.0/publish/MESApplication.xml      |   20 
 MESApplication/bin/Debug/net8.0/MESApplication.dll                |    0 
 MES.Service/bin/Debug/net8.0/MES.Service.dll                      |    0 
 MES.Service/Modes/ProductionOrder.cs                              |  454 +++++++++++++++---------------
 MESApplication/Controllers/BasicData/ProductionOrderController.cs |    2 
 MES.Service/Modes/ProductionOrderSub.cs                           |  344 +++++++++++-----------
 MESApplication/bin/Debug/net8.0/MESApplication.exe                |    0 
 MES.Service/bin/Release/net8.0/MES.Service.dll                    |    0 
 MES.Service/bin/Release/net8.0/MES.Service.pdb                    |    0 
 MES.Service/service/BasicData/ProductionOrderManager.cs           |   22 
 25 files changed, 431 insertions(+), 431 deletions(-)

diff --git a/MES.Service/Modes/ProductionOrder.cs b/MES.Service/Modes/ProductionOrder.cs
index 1a00649..872b65b 100644
--- a/MES.Service/Modes/ProductionOrder.cs
+++ b/MES.Service/Modes/ProductionOrder.cs
@@ -1,275 +1,275 @@
 锘縰sing SqlSugar;
 
-namespace MES.Service.Modes;
-
-/// <summary>
-///     鐢熶骇璁㈠崟琛�(濮斿)
-/// </summary>
-[SugarTable("PRODUCTION_ORDER")]
-public class ProductionOrder
+namespace MES.Service.Modes
 {
     /// <summary>
-    ///     SEQ_ORDER
-    /// </summary>
-    [SugarColumn(ColumnName = "ID", OracleSequenceName = "SEQ_ORDER",
-        IsPrimaryKey = true)]
-    public decimal Id { get; set; }
+    /// 鐢熶骇璁㈠崟琛�(濮斿)
+    ///</summary>
+    [SugarTable("PRODUCTION_ORDER")]
+    public class ProductionOrder
+    {
+        /// <summary>
+        /// SEQ_ORDER 
+        ///</summary>
+        [SugarColumn(ColumnName = "ID",OracleSequenceName = "SEQ_ORDER", IsPrimaryKey = true)]
+        public decimal Id { get; set; }
 
-    /// <summary>
-    ///     鍗曟嵁缂栧彿
-    /// </summary>
-    [SugarColumn(ColumnName = "ORDER_NO")]
-    public string? OrderNo { get; set; }
+        /// <summary>
+        /// 鍗曟嵁缂栧彿 
+        ///</summary>
+        [SugarColumn(ColumnName = "ORDER_NO")]
+        public string? OrderNo { get; set; }
 
-    /// <summary>
-    ///     璐寸墖宸ヨ壓灞炴��
-    /// </summary>
-    [SugarColumn(ColumnName = "SMT_PROCESS_ATTR")]
-    public string? SmtProcessAttr { get; set; }
+        /// <summary>
+        /// 璐寸墖宸ヨ壓灞炴�� 
+        ///</summary>
+        [SugarColumn(ColumnName = "SMT_PROCESS_ATTR")]
+        public string? SmtProcessAttr { get; set; }
 
-    /// <summary>
-    ///     浠撳簱
-    /// </summary>
-    [SugarColumn(ColumnName = "WAREHOUSE")]
-    public string? Warehouse { get; set; }
+        /// <summary>
+        /// 浠撳簱 
+        ///</summary>
+        [SugarColumn(ColumnName = "WAREHOUSE")]
+        public string? Warehouse { get; set; }
 
-    /// <summary>
-    ///     鍗曟嵁鏃ユ湡
-    /// </summary>
-    [SugarColumn(ColumnName = "ORDER_DATE")]
-    public DateTime? OrderDate { get; set; }
+        /// <summary>
+        /// 鍗曟嵁鏃ユ湡 
+        ///</summary>
+        [SugarColumn(ColumnName = "ORDER_DATE")]
+        public DateTime? OrderDate { get; set; }
 
-    /// <summary>
-    ///     鍗曟嵁绫诲瀷
-    /// </summary>
-    [SugarColumn(ColumnName = "ORDER_TYPE")]
-    public string? OrderType { get; set; }
+        /// <summary>
+        /// 鍗曟嵁绫诲瀷 
+        ///</summary>
+        [SugarColumn(ColumnName = "ORDER_TYPE")]
+        public string? OrderType { get; set; }
 
-    /// <summary>
-    ///     涓氬姟鐘舵��
-    /// </summary>
-    [SugarColumn(ColumnName = "BUSINESS_STATUS")]
-    public string? BusinessStatus { get; set; }
+        /// <summary>
+        /// 涓氬姟鐘舵�� 
+        ///</summary>
+        [SugarColumn(ColumnName = "BUSINESS_STATUS")]
+        public string? BusinessStatus { get; set; }
 
-    /// <summary>
-    ///     浜у搧缂栫爜
-    /// </summary>
-    [SugarColumn(ColumnName = "PRODUCT_CODE")]
-    public string? ProductCode { get; set; }
+        /// <summary>
+        /// 浜у搧缂栫爜 
+        ///</summary>
+        [SugarColumn(ColumnName = "PRODUCT_CODE")]
+        public string? ProductCode { get; set; }
 
-    /// <summary>
-    ///     鍗曚綅
-    /// </summary>
-    [SugarColumn(ColumnName = "UNIT")]
-    public string? Unit { get; set; }
+        /// <summary>
+        /// 鍗曚綅 
+        ///</summary>
+        [SugarColumn(ColumnName = "UNIT")]
+        public string? Unit { get; set; }
 
-    /// <summary>
-    ///     宸ュ崟鏁伴噺
-    /// </summary>
-    [SugarColumn(ColumnName = "WORK_ORDER_QTY")]
-    public decimal? WorkOrderQty { get; set; }
+        /// <summary>
+        /// 宸ュ崟鏁伴噺 
+        ///</summary>
+        [SugarColumn(ColumnName = "WORK_ORDER_QTY")]
+        public double? WorkOrderQty { get; set; }
 
-    /// <summary>
-    ///     璁″垝缁�
-    /// </summary>
-    [SugarColumn(ColumnName = "PLANNING_GROUP")]
-    public string? PlanningGroup { get; set; }
+        /// <summary>
+        /// 璁″垝缁� 
+        ///</summary>
+        [SugarColumn(ColumnName = "PLANNING_GROUP")]
+        public string? PlanningGroup { get; set; }
 
-    /// <summary>
-    ///     璁″垝鍛�
-    /// </summary>
-    [SugarColumn(ColumnName = "PLANNER")]
-    public string? Planner { get; set; }
+        /// <summary>
+        /// 璁″垝鍛� 
+        ///</summary>
+        [SugarColumn(ColumnName = "PLANNER")]
+        public string? Planner { get; set; }
 
-    /// <summary>
-    ///     棰勮寮�宸ユ椂闂�
-    /// </summary>
-    [SugarColumn(ColumnName = "ESTIMATED_START_TIME")]
-    public DateTime? EstimatedStartTime { get; set; }
+        /// <summary>
+        /// 棰勮寮�宸ユ椂闂� 
+        ///</summary>
+        [SugarColumn(ColumnName = "ESTIMATED_START_TIME")]
+        public DateTime? EstimatedStartTime { get; set; }
 
-    /// <summary>
-    ///     棰勮瀹屽伐鏃堕棿
-    /// </summary>
-    [SugarColumn(ColumnName = "ESTIMATED_END_TIME")]
-    public DateTime? EstimatedEndTime { get; set; }
+        /// <summary>
+        /// 棰勮瀹屽伐鏃堕棿 
+        ///</summary>
+        [SugarColumn(ColumnName = "ESTIMATED_END_TIME")]
+        public DateTime? EstimatedEndTime { get; set; }
 
-    /// <summary>
-    ///     璁″垝涓嬭揪鏃ユ湡
-    /// </summary>
-    [SugarColumn(ColumnName = "PLAN_RELEASE_DATE")]
-    public DateTime? PlanReleaseDate { get; set; }
+        /// <summary>
+        /// 璁″垝涓嬭揪鏃ユ湡 
+        ///</summary>
+        [SugarColumn(ColumnName = "PLAN_RELEASE_DATE")]
+        public DateTime? PlanReleaseDate { get; set; }
 
-    /// <summary>
-    ///     鍏ュ簱涓婇檺
-    /// </summary>
-    [SugarColumn(ColumnName = "STORAGE_UPPER_LIMIT")]
-    public decimal? StorageUpperLimit { get; set; }
+        /// <summary>
+        /// 鍏ュ簱涓婇檺 
+        ///</summary>
+        [SugarColumn(ColumnName = "STORAGE_UPPER_LIMIT")]
+        public double? StorageUpperLimit { get; set; }
 
-    /// <summary>
-    ///     鍏ュ簱涓嬮檺
-    /// </summary>
-    [SugarColumn(ColumnName = "STORAGE_LOWER_LIMIT")]
-    public decimal? StorageLowerLimit { get; set; }
+        /// <summary>
+        /// 鍏ュ簱涓嬮檺 
+        ///</summary>
+        [SugarColumn(ColumnName = "STORAGE_LOWER_LIMIT")]
+        public double? StorageLowerLimit { get; set; }
 
-    /// <summary>
-    ///     璁″垝璺熻釜鍙�
-    /// </summary>
-    [SugarColumn(ColumnName = "TRACKING_NO")]
-    public string? TrackingNo { get; set; }
+        /// <summary>
+        /// 璁″垝璺熻釜鍙� 
+        ///</summary>
+        [SugarColumn(ColumnName = "TRACKING_NO")]
+        public string? TrackingNo { get; set; }
 
-    /// <summary>
-    ///     鎵瑰彿
-    /// </summary>
-    [SugarColumn(ColumnName = "BATCH_NO")]
-    public string? BatchNo { get; set; }
+        /// <summary>
+        /// 鎵瑰彿 
+        ///</summary>
+        [SugarColumn(ColumnName = "BATCH_NO")]
+        public string? BatchNo { get; set; }
 
-    /// <summary>
-    ///     BOM鐗堟
-    /// </summary>
-    [SugarColumn(ColumnName = "BOM_VERSION")]
-    public string? BomVersion { get; set; }
+        /// <summary>
+        /// BOM鐗堟 
+        ///</summary>
+        [SugarColumn(ColumnName = "BOM_VERSION")]
+        public string? BomVersion { get; set; }
 
-    /// <summary>
-    ///     閿�鍞鍗曞彿
-    /// </summary>
-    [SugarColumn(ColumnName = "SALES_ORDER_NO")]
-    public string? SalesOrderNo { get; set; }
+        /// <summary>
+        /// 閿�鍞鍗曞彿 
+        ///</summary>
+        [SugarColumn(ColumnName = "SALES_ORDER_NO")]
+        public string? SalesOrderNo { get; set; }
 
-    /// <summary>
-    ///     閿�鍞鍗曡鍙�
-    /// </summary>
-    [SugarColumn(ColumnName = "SALES_ORDER_LINE_NO")]
-    public string? SalesOrderLineNo { get; set; }
+        /// <summary>
+        /// 閿�鍞鍗曡鍙� 
+        ///</summary>
+        [SugarColumn(ColumnName = "SALES_ORDER_LINE_NO")]
+        public string? SalesOrderLineNo { get; set; }
 
-    /// <summary>
-    ///     鐢熸垚鏂瑰紡
-    /// </summary>
-    [SugarColumn(ColumnName = "GENERATION_METHOD")]
-    public string? GenerationMethod { get; set; }
+        /// <summary>
+        /// 鐢熸垚鏂瑰紡 
+        ///</summary>
+        [SugarColumn(ColumnName = "GENERATION_METHOD")]
+        public string? GenerationMethod { get; set; }
 
-    /// <summary>
-    ///     ERP鐢熶骇璁㈠崟ID
-    /// </summary>
-    [SugarColumn(ColumnName = "ERP_PRODUCTION_ORDER_ID")]
-    public string? ErpProductionOrderId { get; set; }
+        /// <summary>
+        /// ERP鐢熶骇璁㈠崟ID 
+        ///</summary>
+        [SugarColumn(ColumnName = "ERP_PRODUCTION_ORDER_ID")]
+        public string? ErpProductionOrderId { get; set; }
 
-    /// <summary>
-    ///     ERP鐢熶骇璁㈠崟搴忓彿
-    /// </summary>
-    [SugarColumn(ColumnName = "ERP_PRODUCTION_ORDER_LINE_NO")]
-    public string? ErpProductionOrderLineNo { get; set; }
+        /// <summary>
+        /// ERP鐢熶骇璁㈠崟搴忓彿 
+        ///</summary>
+        [SugarColumn(ColumnName = "ERP_PRODUCTION_ORDER_LINE_NO")]
+        public string? ErpProductionOrderLineNo { get; set; }
 
-    /// <summary>
-    ///     ERP鐢熶骇璁㈠崟鍗曞彿
-    /// </summary>
-    [SugarColumn(ColumnName = "ERP_PRODUCTION_ORDER_NO")]
-    public string? ErpProductionOrderNo { get; set; }
+        /// <summary>
+        /// ERP鐢熶骇璁㈠崟鍗曞彿 
+        ///</summary>
+        [SugarColumn(ColumnName = "ERP_PRODUCTION_ORDER_NO")]
+        public string? ErpProductionOrderNo { get; set; }
 
-    /// <summary>
-    ///     婧愬崟绫诲瀷
-    /// </summary>
-    [SugarColumn(ColumnName = "SOURCE_ORDER_TYPE")]
-    public string? SourceOrderType { get; set; }
+        /// <summary>
+        /// 婧愬崟绫诲瀷 
+        ///</summary>
+        [SugarColumn(ColumnName = "SOURCE_ORDER_TYPE")]
+        public string? SourceOrderType { get; set; }
 
-    /// <summary>
-    ///     婧愬崟缂栧彿
-    /// </summary>
-    [SugarColumn(ColumnName = "SOURCE_ORDER_NO")]
-    public string? SourceOrderNo { get; set; }
+        /// <summary>
+        /// 婧愬崟缂栧彿 
+        ///</summary>
+        [SugarColumn(ColumnName = "SOURCE_ORDER_NO")]
+        public string? SourceOrderNo { get; set; }
 
-    /// <summary>
-    ///     婧愬崟鍒嗗綍琛屽彿
-    /// </summary>
-    [SugarColumn(ColumnName = "SOURCE_ORDER_ENTRY_NO")]
-    public string? SourceOrderEntryNo { get; set; }
+        /// <summary>
+        /// 婧愬崟鍒嗗綍琛屽彿 
+        ///</summary>
+        [SugarColumn(ColumnName = "SOURCE_ORDER_ENTRY_NO")]
+        public string? SourceOrderEntryNo { get; set; }
 
-    /// <summary>
-    ///     闇�姹傚崟鎹彿
-    /// </summary>
-    [SugarColumn(ColumnName = "DEMAND_ORDER_NO")]
-    public string? DemandOrderNo { get; set; }
+        /// <summary>
+        /// 闇�姹傚崟鎹彿 
+        ///</summary>
+        [SugarColumn(ColumnName = "DEMAND_ORDER_NO")]
+        public string? DemandOrderNo { get; set; }
 
-    /// <summary>
-    ///     闇�姹傚崟鎹鍙�
-    /// </summary>
-    [SugarColumn(ColumnName = "DEMAND_ORDER_LINE_NO")]
-    public string? DemandOrderLineNo { get; set; }
+        /// <summary>
+        /// 闇�姹傚崟鎹鍙� 
+        ///</summary>
+        [SugarColumn(ColumnName = "DEMAND_ORDER_LINE_NO")]
+        public string? DemandOrderLineNo { get; set; }
 
-    /// <summary>
-    ///     缁撴浜�
-    /// </summary>
-    [SugarColumn(ColumnName = "CLOSING_PERSON")]
-    public string? ClosingPerson { get; set; }
+        /// <summary>
+        /// 缁撴浜� 
+        ///</summary>
+        [SugarColumn(ColumnName = "CLOSING_PERSON")]
+        public string? ClosingPerson { get; set; }
 
-    /// <summary>
-    ///     缁撴绫诲瀷
-    /// </summary>
-    [SugarColumn(ColumnName = "CLOSING_TYPE")]
-    public string? ClosingType { get; set; }
+        /// <summary>
+        /// 缁撴绫诲瀷 
+        ///</summary>
+        [SugarColumn(ColumnName = "CLOSING_TYPE")]
+        public string? ClosingType { get; set; }
 
-    /// <summary>
-    ///     婧愭媶鍒嗚鍗曠紪鍙�
-    /// </summary>
-    [SugarColumn(ColumnName = "SPLIT_ORDER_NO")]
-    public string? SplitOrderNo { get; set; }
+        /// <summary>
+        /// 婧愭媶鍒嗚鍗曠紪鍙� 
+        ///</summary>
+        [SugarColumn(ColumnName = "SPLIT_ORDER_NO")]
+        public string? SplitOrderNo { get; set; }
 
-    /// <summary>
-    ///     澶囨敞
-    /// </summary>
-    [SugarColumn(ColumnName = "REMARKS")]
-    public string? Remarks { get; set; }
+        /// <summary>
+        /// 澶囨敞 
+        ///</summary>
+        [SugarColumn(ColumnName = "REMARKS")]
+        public string? Remarks { get; set; }
 
-    /// <summary>
-    ///     ERPID
-    /// </summary>
-    [SugarColumn(ColumnName = "ERP_ID")]
-    public string? ErpId { get; set; }
+        /// <summary>
+        /// ERPID 
+        ///</summary>
+        [SugarColumn(ColumnName = "ERP_ID")]
+        public string? ErpId { get; set; }
 
-    /// <summary>
-    ///     ERP鐢熶骇璁㈠崟鍒嗗綍鍐呯爜
-    /// </summary>
-    [SugarColumn(ColumnName = "ERP_PRODUCTION_ENTRY_CODE")]
-    public string? ErpProductionEntryCode { get; set; }
+        /// <summary>
+        /// ERP鐢熶骇璁㈠崟鍒嗗綍鍐呯爜 
+        ///</summary>
+        [SugarColumn(ColumnName = "ERP_PRODUCTION_ENTRY_CODE")]
+        public string? ErpProductionEntryCode { get; set; }
 
-    /// <summary>
-    ///     閲囪喘璁㈠崟
-    /// </summary>
-    [SugarColumn(ColumnName = "PURCHASEORDERNO")]
-    public string? PurchaseOrderNo { get; set; }
+        /// <summary>
+        /// 閲囪喘璁㈠崟 
+        ///</summary>
+        [SugarColumn(ColumnName = "PURCHASEORDERNO")]
+        public string? PurchaseOrderNo { get; set; }
 
-    /// <summary>
-    ///     閲囪喘璁㈠崟琛屽彿
-    /// </summary>
-    [SugarColumn(ColumnName = "PURCHASEORDERENTRYSEQ")]
-    public long? PurchaseOrderEntrySeq { get; set; }
+        /// <summary>
+        /// 閲囪喘璁㈠崟琛屽彿 
+        ///</summary>
+        [SugarColumn(ColumnName = "PURCHASEORDERENTRYSEQ")]
+        public long? PurchaseOrderEntrySeq { get; set; }
 
-    /// <summary>
-    ///     鏍囧噯鐐规暟
-    /// </summary>
-    [SugarColumn(ColumnName = "STANDARDPOINTS")]
-    public decimal? StandardPoints { get; set; }
+        /// <summary>
+        /// 鏍囧噯鐐规暟 
+        ///</summary>
+        [SugarColumn(ColumnName = "STANDARDPOINTS")]
+        public decimal? Standardpoints { get; set; }
 
-    /// <summary>
-    ///     璁′环鐐规暟
-    /// </summary>
-    [SugarColumn(ColumnName = "PRICINGPOINTS")]
-    public decimal? PricingPoints { get; set; }
+        /// <summary>
+        /// 璁′环鐐规暟 
+        ///</summary>
+        [SugarColumn(ColumnName = "PRICINGPOINTS")]
+        public decimal? Pricingpoints { get; set; }
 
-    /// <summary>
-    ///     鍏ュ簱鏁伴噺
-    /// </summary>
-    [SugarColumn(ColumnName = "STOCKINQTY")]
-    public decimal? StockInQty { get; set; }
+        /// <summary>
+        /// 鍏ュ簱鏁伴噺 
+        ///</summary>
+        [SugarColumn(ColumnName = "STOCKINQTY")]
+        public decimal? StockInQty { get; set; }
 
-    /// <summary>
-    ///     鏈叆搴撴暟閲�
-    /// </summary>
-    [SugarColumn(ColumnName = "NOSTOCKINQTY")]
-    public decimal? NoStockInQty { get; set; }
+        /// <summary>
+        /// 鏈叆搴撴暟閲� 
+        ///</summary>
+        [SugarColumn(ColumnName = "NOSTOCKINQTY")]
+        public double? NoStockInQty { get; set; }
 
-    /// <summary>
-    ///     鍏ュ簱璐т富
-    /// </summary>
-    [SugarColumn(ColumnName = "STOCKOWNER")]
-    public string? StockOwner { get; set; }
+        /// <summary>
+        /// 鍏ュ簱璐т富 
+        ///</summary>
+        [SugarColumn(ColumnName = "STOCKOWNER")]
+        public string? StockOwner { get; set; }
+    }
 }
\ No newline at end of file
diff --git a/MES.Service/Modes/ProductionOrderSub.cs b/MES.Service/Modes/ProductionOrderSub.cs
index 034c198..870a975 100644
--- a/MES.Service/Modes/ProductionOrderSub.cs
+++ b/MES.Service/Modes/ProductionOrderSub.cs
@@ -1,209 +1,209 @@
 锘縰sing SqlSugar;
 
-namespace MES.Service.Modes;
-
-/// <summary>
-///     鐢熶骇璁㈠崟琛�(濮斿)瀛愯〃
-/// </summary>
-[SugarTable("PRODUCTION_ORDER_SUB")]
-public class ProductionOrderSub
+namespace MES.Service.Modes
 {
     /// <summary>
-    ///     SEQ_ORDER
-    /// </summary>
-    [SugarColumn(ColumnName = "ID", OracleSequenceName = "SEQ_ORDER",
-        IsPrimaryKey = true)]
-    public decimal Id { get; set; }
+    /// 鐢熶骇璁㈠崟琛�(濮斿)瀛愯〃
+    ///</summary>
+    [SugarTable("PRODUCTION_ORDER_SUB")]
+    public class ProductionOrderSub
+    {
+        /// <summary>
+        /// SEQ_ORDER 
+        ///</summary>
+        [SugarColumn(ColumnName = "ID",OracleSequenceName = "SEQ_ORDER", IsPrimaryKey = true)]
+        public decimal Id { get; set; }
 
-    /// <summary>
-    ///     宸ュ崟鍗曞彿
-    /// </summary>
-    [SugarColumn(ColumnName = "WORK_ORDER_NO")]
-    public string? WorkOrderNo { get; set; }
+        /// <summary>
+        /// 宸ュ崟鍗曞彿 
+        ///</summary>
+        [SugarColumn(ColumnName = "WORK_ORDER_NO")]
+        public string? WorkOrderNo { get; set; }
 
-    /// <summary>
-    ///     搴忓彿
-    /// </summary>
-    [SugarColumn(ColumnName = "SEQUENCE_NO")]
-    public long? SequenceNo { get; set; }
+        /// <summary>
+        /// 搴忓彿 
+        ///</summary>
+        [SugarColumn(ColumnName = "SEQUENCE_NO")]
+        public long? SequenceNo { get; set; }
 
-    /// <summary>
-    ///     鏉愭枡缂栫爜
-    /// </summary>
-    [SugarColumn(ColumnName = "MATERIAL_CODE")]
-    public string? MaterialCode { get; set; }
+        /// <summary>
+        /// 鏉愭枡缂栫爜 
+        ///</summary>
+        [SugarColumn(ColumnName = "MATERIAL_CODE")]
+        public string? MaterialCode { get; set; }
 
-    /// <summary>
-    ///     闇�棰嗙敤閲�
-    /// </summary>
-    [SugarColumn(ColumnName = "REQUIRED_QTY")]
-    public decimal? RequiredQty { get; set; }
+        /// <summary>
+        /// 闇�棰嗙敤閲� 
+        ///</summary>
+        [SugarColumn(ColumnName = "REQUIRED_QTY")]
+        public double? RequiredQty { get; set; }
 
-    /// <summary>
-    ///     宸查鐢ㄩ噺
-    /// </summary>
-    [SugarColumn(ColumnName = "ISSUED_QTY")]
-    public decimal? IssuedQty { get; set; }
+        /// <summary>
+        /// 宸查鐢ㄩ噺 
+        ///</summary>
+        [SugarColumn(ColumnName = "ISSUED_QTY")]
+        public decimal? IssuedQty { get; set; }
 
-    /// <summary>
-    ///     浣嶇疆鍙�
-    /// </summary>
-    [SugarColumn(ColumnName = "LOCATION_NO")]
-    public string? LocationNo { get; set; }
+        /// <summary>
+        /// 浣嶇疆鍙� 
+        ///</summary>
+        [SugarColumn(ColumnName = "LOCATION_NO")]
+        public string? LocationNo { get; set; }
 
-    /// <summary>
-    ///     渚涘簲缁勭粐
-    /// </summary>
-    [SugarColumn(ColumnName = "SUPPLYING_ORG")]
-    public string? SupplyingOrg { get; set; }
+        /// <summary>
+        /// 渚涘簲缁勭粐 
+        ///</summary>
+        [SugarColumn(ColumnName = "SUPPLYING_ORG")]
+        public string? SupplyingOrg { get; set; }
 
-    /// <summary>
-    ///     鍙戞枡缁勭粐
-    /// </summary>
-    [SugarColumn(ColumnName = "ISSUING_ORG")]
-    public string? IssuingOrg { get; set; }
+        /// <summary>
+        /// 鍙戞枡缁勭粐 
+        ///</summary>
+        [SugarColumn(ColumnName = "ISSUING_ORG")]
+        public string? IssuingOrg { get; set; }
 
-    /// <summary>
-    ///     璐т富
-    /// </summary>
-    [SugarColumn(ColumnName = "STOCK_OWNER")]
-    public string? StockOwner { get; set; }
+        /// <summary>
+        /// 璐т富 
+        ///</summary>
+        [SugarColumn(ColumnName = "STOCK_OWNER")]
+        public string? StockOwner { get; set; }
 
-    /// <summary>
-    ///     璁″垝璺熻釜鍙�
-    /// </summary>
-    [SugarColumn(ColumnName = "TRACKING_NO")]
-    public string? TrackingNo { get; set; }
+        /// <summary>
+        /// 璁″垝璺熻釜鍙� 
+        ///</summary>
+        [SugarColumn(ColumnName = "TRACKING_NO")]
+        public string? TrackingNo { get; set; }
 
-    /// <summary>
-    ///     鎵瑰彿
-    /// </summary>
-    [SugarColumn(ColumnName = "BATCH_NO")]
-    public string? BatchNo { get; set; }
+        /// <summary>
+        /// 鎵瑰彿 
+        ///</summary>
+        [SugarColumn(ColumnName = "BATCH_NO")]
+        public string? BatchNo { get; set; }
 
-    /// <summary>
-    ///     浠撳簱
-    /// </summary>
-    [SugarColumn(ColumnName = "WAREHOUSE")]
-    public string? Warehouse { get; set; }
+        /// <summary>
+        /// 浠撳簱 
+        ///</summary>
+        [SugarColumn(ColumnName = "WAREHOUSE")]
+        public string? Warehouse { get; set; }
 
-    /// <summary>
-    ///     鍙戞枡鏂瑰紡
-    /// </summary>
-    [SugarColumn(ColumnName = "ISSUING_METHOD")]
-    public string? IssuingMethod { get; set; }
+        /// <summary>
+        /// 鍙戞枡鏂瑰紡 
+        ///</summary>
+        [SugarColumn(ColumnName = "ISSUING_METHOD")]
+        public string? IssuingMethod { get; set; }
 
-    /// <summary>
-    ///     宸ヨ壓
-    /// </summary>
-    [SugarColumn(ColumnName = "PROCESS")]
-    public string? Process { get; set; }
+        /// <summary>
+        /// 宸ヨ壓 
+        ///</summary>
+        [SugarColumn(ColumnName = "PROCESS")]
+        public string? Process { get; set; }
 
-    /// <summary>
-    ///     鍗曚綅
-    /// </summary>
-    [SugarColumn(ColumnName = "UNIT")]
-    public string? Unit { get; set; }
+        /// <summary>
+        /// 鍗曚綅 
+        ///</summary>
+        [SugarColumn(ColumnName = "UNIT")]
+        public string? Unit { get; set; }
 
-    /// <summary>
-    ///     渚涘簲绫诲瀷
-    /// </summary>
-    [SugarColumn(ColumnName = "SUPPLYING_TYPE")]
-    public string? SupplyingType { get; set; }
+        /// <summary>
+        /// 渚涘簲绫诲瀷 
+        ///</summary>
+        [SugarColumn(ColumnName = "SUPPLYING_TYPE")]
+        public string? SupplyingType { get; set; }
 
-    /// <summary>
-    ///     缁勬垚鐢ㄩ噺
-    /// </summary>
-    [SugarColumn(ColumnName = "COMPOSITION_QTY")]
-    public decimal? CompositionQty { get; set; }
+        /// <summary>
+        /// 缁勬垚鐢ㄩ噺 
+        ///</summary>
+        [SugarColumn(ColumnName = "COMPOSITION_QTY")]
+        public decimal? CompositionQty { get; set; }
 
-    /// <summary>
-    ///     鏄惁鏇挎枡
-    /// </summary>
-    [SugarColumn(ColumnName = "IS_SUBSTITUTE")]
-    public string? IsSubstitute { get; set; }
+        /// <summary>
+        /// 鏄惁鏇挎枡 
+        ///</summary>
+        [SugarColumn(ColumnName = "IS_SUBSTITUTE")]
+        public string? IsSubstitute { get; set; }
 
-    /// <summary>
-    ///     鍒嗗瓙
-    /// </summary>
-    [SugarColumn(ColumnName = "NUMERATOR")]
-    public long? Numerator { get; set; }
+        /// <summary>
+        /// 鍒嗗瓙 
+        ///</summary>
+        [SugarColumn(ColumnName = "NUMERATOR")]
+        public double? Numerator { get; set; }
 
-    /// <summary>
-    ///     鍒嗘瘝
-    /// </summary>
-    [SugarColumn(ColumnName = "DENOMINATOR")]
-    public long? Denominator { get; set; }
+        /// <summary>
+        /// 鍒嗘瘝 
+        ///</summary>
+        [SugarColumn(ColumnName = "DENOMINATOR")]
+        public double? Denominator { get; set; }
 
-    /// <summary>
-    ///     ERPID
-    /// </summary>
-    [SugarColumn(ColumnName = "ERP_ID")]
-    public string? ErpId { get; set; }
+        /// <summary>
+        /// ERPID 
+        ///</summary>
+        [SugarColumn(ColumnName = "ERP_ID")]
+        public string? ErpId { get; set; }
 
-    /// <summary>
-    ///     ERP澶碔D
-    /// </summary>
-    [SugarColumn(ColumnName = "ERP_HEADER_ID")]
-    public string? ErpHeaderId { get; set; }
+        /// <summary>
+        /// ERP澶碔D 
+        ///</summary>
+        [SugarColumn(ColumnName = "ERP_HEADER_ID")]
+        public string? ErpHeaderId { get; set; }
 
-    /// <summary>
-    ///     鍥哄畾鎹熻��
-    /// </summary>
-    [SugarColumn(ColumnName = "FIXED_LOSS")]
-    public decimal? FixedLoss { get; set; }
+        /// <summary>
+        /// 鍥哄畾鎹熻�� 
+        ///</summary>
+        [SugarColumn(ColumnName = "FIXED_LOSS")]
+        public decimal? FixedLoss { get; set; }
 
-    /// <summary>
-    ///     鍙樺姩鎹熻�楃巼%
-    /// </summary>
-    [SugarColumn(ColumnName = "VARIABLE_LOSS_RATE")]
-    public string? VariableLossRate { get; set; }
+        /// <summary>
+        /// 鍙樺姩鎹熻�楃巼% 
+        ///</summary>
+        [SugarColumn(ColumnName = "VARIABLE_LOSS_RATE")]
+        public string? VariableLossRate { get; set; }
 
-    /// <summary>
-    ///     瀛愰」绫诲瀷
-    /// </summary>
-    [SugarColumn(ColumnName = "SUB_ITEM_TYPE")]
-    public string? SubItemType { get; set; }
+        /// <summary>
+        /// 瀛愰」绫诲瀷 
+        ///</summary>
+        [SugarColumn(ColumnName = "SUB_ITEM_TYPE")]
+        public string? SubItemType { get; set; }
 
-    /// <summary>
-    ///     瀛愰」鍗曚綅
-    /// </summary>
-    [SugarColumn(ColumnName = "SUB_ITEM_UNIT")]
-    public string? SubItemUnit { get; set; }
+        /// <summary>
+        /// 瀛愰」鍗曚綅 
+        ///</summary>
+        [SugarColumn(ColumnName = "SUB_ITEM_UNIT")]
+        public string? SubItemUnit { get; set; }
 
-    /// <summary>
-    ///     閿�鍞鍗曞彿
-    /// </summary>
-    [SugarColumn(ColumnName = "SALES_ORDER_NO")]
-    public string? SalesOrderNo { get; set; }
+        /// <summary>
+        /// 閿�鍞鍗曞彿 
+        ///</summary>
+        [SugarColumn(ColumnName = "SALES_ORDER_NO")]
+        public string? SalesOrderNo { get; set; }
 
-    /// <summary>
-    ///     椤规鍙�
-    /// </summary>
-    [SugarColumn(ColumnName = "ITEM_NO")]
-    public string? ItemNo { get; set; }
+        /// <summary>
+        /// 椤规鍙� 
+        ///</summary>
+        [SugarColumn(ColumnName = "ITEM_NO")]
+        public string? ItemNo { get; set; }
 
-    /// <summary>
-    ///     鍙戞枡缁勭粐
-    /// </summary>
-    [SugarColumn(ColumnName = "ISSUING_ORG_2")]
-    public string? IssuingOrg2 { get; set; }
+        /// <summary>
+        /// 鍙戞枡缁勭粐 
+        ///</summary>
+        [SugarColumn(ColumnName = "ISSUING_ORG_2")]
+        public string? IssuingOrg2 { get; set; }
 
-    /// <summary>
-    ///     璐т富绫诲瀷
-    /// </summary>
-    [SugarColumn(ColumnName = "OWNER_TYPE")]
-    public string? OwnerType { get; set; }
+        /// <summary>
+        /// 璐т富绫诲瀷 
+        ///</summary>
+        [SugarColumn(ColumnName = "OWNER_TYPE")]
+        public string? OwnerType { get; set; }
 
-    /// <summary>
-    ///     璐т富
-    /// </summary>
-    [SugarColumn(ColumnName = "OWNER")]
-    public string? Owner { get; set; }
+        /// <summary>
+        /// 璐т富 
+        ///</summary>
+        [SugarColumn(ColumnName = "OWNER")]
+        public string? Owner { get; set; }
 
-    /// <summary>
-    ///     渚涘簲缁勭粐
-    /// </summary>
-    [SugarColumn(ColumnName = "SUPPLYING_ORG_2")]
-    public string? SupplyingOrg2 { get; set; }
+        /// <summary>
+        /// 渚涘簲缁勭粐 
+        ///</summary>
+        [SugarColumn(ColumnName = "SUPPLYING_ORG_2")]
+        public string? SupplyingOrg2 { get; set; }
+    }
 }
\ No newline at end of file
diff --git a/MES.Service/bin/Debug/net8.0/MES.Service.dll b/MES.Service/bin/Debug/net8.0/MES.Service.dll
index c53b152..80f838c 100644
--- a/MES.Service/bin/Debug/net8.0/MES.Service.dll
+++ b/MES.Service/bin/Debug/net8.0/MES.Service.dll
Binary files differ
diff --git a/MES.Service/bin/Debug/net8.0/MES.Service.pdb b/MES.Service/bin/Debug/net8.0/MES.Service.pdb
index e19f4e4..b01d126 100644
--- a/MES.Service/bin/Debug/net8.0/MES.Service.pdb
+++ b/MES.Service/bin/Debug/net8.0/MES.Service.pdb
Binary files differ
diff --git a/MES.Service/bin/Release/net8.0/MES.Service.dll b/MES.Service/bin/Release/net8.0/MES.Service.dll
index e7c2965..03132eb 100644
--- a/MES.Service/bin/Release/net8.0/MES.Service.dll
+++ b/MES.Service/bin/Release/net8.0/MES.Service.dll
Binary files differ
diff --git a/MES.Service/bin/Release/net8.0/MES.Service.pdb b/MES.Service/bin/Release/net8.0/MES.Service.pdb
index 0d56dda..7c2a9e3 100644
--- a/MES.Service/bin/Release/net8.0/MES.Service.pdb
+++ b/MES.Service/bin/Release/net8.0/MES.Service.pdb
Binary files differ
diff --git a/MES.Service/service/BasicData/ProductionOrderManager.cs b/MES.Service/service/BasicData/ProductionOrderManager.cs
index c5ba4e0..c46462b 100644
--- a/MES.Service/service/BasicData/ProductionOrderManager.cs
+++ b/MES.Service/service/BasicData/ProductionOrderManager.cs
@@ -108,15 +108,15 @@
             BusinessStatus = erpDto.FStatus,
             ProductCode = erpDto.FMaterialId,
             Unit = erpDto.FUnitID,
-            WorkOrderQty = Convert.ToDecimal(erpDto.FQty),
+            WorkOrderQty = Convert.ToDouble(erpDto.FQty),
             PlanningGroup = erpDto.FWorkGroupId,
             Planner = erpDto.FPlannerID,
             EstimatedStartTime =
                 ParseDateTime(erpDto.FPlanStartDate) ?? null,
             EstimatedEndTime =
                 ParseDateTime(erpDto.FPlanFinishDate) ?? null,
-            StorageUpperLimit = Convert.ToDecimal(erpDto.FStockInLimitH),
-            StorageLowerLimit = Convert.ToDecimal(erpDto.FStockInLimitL),
+            StorageUpperLimit = Convert.ToDouble(erpDto.FStockInLimitH),
+            StorageLowerLimit = Convert.ToDouble(erpDto.FStockInLimitL),
             TrackingNo = erpDto.FMTONO,
             BatchNo = erpDto.FLot,
             BomVersion = erpDto.FBomId,
@@ -137,12 +137,12 @@
             ErpProductionEntryCode = erpDto.FSUBENTRYID,
             PurchaseOrderNo = erpDto.FPurOrderNo,
             PurchaseOrderEntrySeq = long.Parse(erpDto.FPurOrderEntrySeq),
-            StandardPoints =
-                Convert.ToDecimal(erpDto.F_UNW_BaseProperty_bzds),
-            PricingPoints =
-                Convert.ToDecimal(erpDto.F_UNW_BaseProperty_jjds),
+            // StandardPoints =
+            //     Convert.ToDecimal(erpDto.F_UNW_BaseProperty_bzds),
+            // PricingPoints =
+            //     Convert.ToDecimal(erpDto.F_UNW_BaseProperty_jjds),
             StockInQty = Convert.ToDecimal(erpDto.FBaseStockInQty),
-            NoStockInQty = Convert.ToDecimal(erpDto.FBaseNoStockInQty),
+            NoStockInQty = Convert.ToDouble(erpDto.FBaseNoStockInQty),
             StockOwner = erpDto.FInStockOwnerId
         };
 
@@ -164,7 +164,7 @@
             {
                 SequenceNo = long.Parse(erpDto.FSEQ),
                 MaterialCode = erpDto.FMaterialID2,
-                RequiredQty = Convert.ToDecimal(erpDto.FMustQty),
+                RequiredQty = Convert.ToDouble(erpDto.FMustQty),
                 IssuedQty = Convert.ToDecimal(erpDto.FPickedQty),
                 LocationNo = erpDto.FPositionNO,
                 StockOwner = erpDto.FOwnerID,
@@ -175,8 +175,8 @@
                 Process = erpDto.F_UNW_Text_tpgy_Z,
                 Unit = erpDto.FUnitID2,
                 SupplyingType = erpDto.FSupplyType,
-                Numerator = long.Parse(erpDto.FNumerator),
-                Denominator = long.Parse(erpDto.FDenominator),
+                Numerator = Convert.ToDouble(erpDto.FNumerator),
+                Denominator = Convert.ToDouble(erpDto.FDenominator),
                 ErpId = erpDto.FPPOMENTRYID,
                 ErpHeaderId = erpDto.FPPOMID,
                 FixedLoss = Convert.ToDecimal(erpDto.FFixScrapQty),
diff --git a/MESApplication/Controllers/BasicData/ProductionOrderController.cs b/MESApplication/Controllers/BasicData/ProductionOrderController.cs
index 88aa88f..fd7a8de 100644
--- a/MESApplication/Controllers/BasicData/ProductionOrderController.cs
+++ b/MESApplication/Controllers/BasicData/ProductionOrderController.cs
@@ -22,7 +22,7 @@
     private readonly string TableName = "PRODUCTION_ORDER";
 
     private readonly string URL =
-        "http://localhost:10054/api/PRODUCTION_ORDER/";
+        "http://localhost:10054/api/ProductionOrder/"; 
 
     //
     [HttpPost("Save")]
diff --git a/MESApplication/bin/Debug/net8.0/MES.Service.dll b/MESApplication/bin/Debug/net8.0/MES.Service.dll
index c53b152..80f838c 100644
--- a/MESApplication/bin/Debug/net8.0/MES.Service.dll
+++ b/MESApplication/bin/Debug/net8.0/MES.Service.dll
Binary files differ
diff --git a/MESApplication/bin/Debug/net8.0/MES.Service.pdb b/MESApplication/bin/Debug/net8.0/MES.Service.pdb
index e19f4e4..b01d126 100644
--- a/MESApplication/bin/Debug/net8.0/MES.Service.pdb
+++ b/MESApplication/bin/Debug/net8.0/MES.Service.pdb
Binary files differ
diff --git a/MESApplication/bin/Debug/net8.0/MESApplication.dll b/MESApplication/bin/Debug/net8.0/MESApplication.dll
index f1b6827..5e779ec 100644
--- a/MESApplication/bin/Debug/net8.0/MESApplication.dll
+++ b/MESApplication/bin/Debug/net8.0/MESApplication.dll
Binary files differ
diff --git a/MESApplication/bin/Debug/net8.0/MESApplication.exe b/MESApplication/bin/Debug/net8.0/MESApplication.exe
index 9e83e21..5039c8f 100644
--- a/MESApplication/bin/Debug/net8.0/MESApplication.exe
+++ b/MESApplication/bin/Debug/net8.0/MESApplication.exe
Binary files differ
diff --git a/MESApplication/bin/Debug/net8.0/MESApplication.pdb b/MESApplication/bin/Debug/net8.0/MESApplication.pdb
index 0521115..b4ae225 100644
--- a/MESApplication/bin/Debug/net8.0/MESApplication.pdb
+++ b/MESApplication/bin/Debug/net8.0/MESApplication.pdb
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/MES.Service.dll b/MESApplication/bin/Release/net8.0/MES.Service.dll
index e7c2965..03132eb 100644
--- a/MESApplication/bin/Release/net8.0/MES.Service.dll
+++ b/MESApplication/bin/Release/net8.0/MES.Service.dll
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/MES.Service.pdb b/MESApplication/bin/Release/net8.0/MES.Service.pdb
index 0d56dda..7c2a9e3 100644
--- a/MESApplication/bin/Release/net8.0/MES.Service.pdb
+++ b/MESApplication/bin/Release/net8.0/MES.Service.pdb
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/MESApplication.dll b/MESApplication/bin/Release/net8.0/MESApplication.dll
index bc9c138..fe539b8 100644
--- a/MESApplication/bin/Release/net8.0/MESApplication.dll
+++ b/MESApplication/bin/Release/net8.0/MESApplication.dll
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/MESApplication.exe b/MESApplication/bin/Release/net8.0/MESApplication.exe
index 3935db5..5039c8f 100644
--- a/MESApplication/bin/Release/net8.0/MESApplication.exe
+++ b/MESApplication/bin/Release/net8.0/MESApplication.exe
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/MESApplication.pdb b/MESApplication/bin/Release/net8.0/MESApplication.pdb
index 7e9550e..6010bfc 100644
--- a/MESApplication/bin/Release/net8.0/MESApplication.pdb
+++ b/MESApplication/bin/Release/net8.0/MESApplication.pdb
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/MESApplication.xml b/MESApplication/bin/Release/net8.0/MESApplication.xml
index 49016c3..2968e69 100644
--- a/MESApplication/bin/Release/net8.0/MESApplication.xml
+++ b/MESApplication/bin/Release/net8.0/MESApplication.xml
@@ -1597,29 +1597,29 @@
             </summary>
             <returns></returns>
         </member>
-        <member name="T:MESApplication.ActionFilter">
+        <member name="T:MESApplication.Filter.ActionFilter">
             <summary>
                 鏂规硶杩囨护鍣�
             </summary>
         </member>
-        <member name="P:MESApplication.ActionFilter.LoggerMonitor">
+        <member name="P:MESApplication.Filter.ActionFilter.LoggerMonitor">
             <summary>
                 鐩戞帶鏃ュ織
             </summary>
         </member>
-        <member name="P:MESApplication.ActionFilter.LoggerError">
+        <member name="P:MESApplication.Filter.ActionFilter.LoggerError">
             <summary>
                 閿欒鏃ュ織
             </summary>
         </member>
-        <member name="M:MESApplication.ActionFilter.OnActionExecuting(Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext)">
+        <member name="M:MESApplication.Filter.ActionFilter.OnActionExecuting(Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext)">
             <summary>
                 鏂规硶鎵ц鍓�
             </summary>
             <param name="context"></param>
             <exception cref="T:System.NotImplementedException"></exception>
         </member>
-        <member name="M:MESApplication.ActionFilter.CreateRequestLogText(System.String,System.String,System.String,System.String,System.String)">
+        <member name="M:MESApplication.Filter.ActionFilter.CreateRequestLogText(System.String,System.String,System.String,System.String,System.String)">
             <summary>
                 鍒涘缓璇锋眰鏃ュ織鏂囨湰
             </summary>
@@ -1629,7 +1629,7 @@
             <param name="actionArgs"></param>
             <returns></returns>
         </member>
-        <member name="M:MESApplication.ActionFilter.CreateResponseLogText(System.String,System.String,System.String,System.Object)">
+        <member name="M:MESApplication.Filter.ActionFilter.CreateResponseLogText(System.String,System.String,System.String,System.Object)">
             <summary>
                 鍒涘缓鍝嶅簲鏃ュ織鏂囨湰
             </summary>
@@ -1639,7 +1639,7 @@
             <param name="result"></param>
             <returns></returns>
         </member>
-        <member name="M:MESApplication.ErrorLog.Write(System.String,System.String,System.Exception)">
+        <member name="M:MESApplication.Filter.ErrorLog.Write(System.String,System.String,System.Exception)">
             <summary>
                 鍐欏叆鎿嶄綔鏃ュ織鍒版枃浠朵腑
             </summary>
@@ -1647,21 +1647,21 @@
             <param name="message">閿欒鏂囨湰淇℃伅</param>
             <param name="ex">寮傚父</param>
         </member>
-        <member name="M:MESApplication.ErrorLog.Write(System.String,System.Exception)">
+        <member name="M:MESApplication.Filter.ErrorLog.Write(System.String,System.Exception)">
             <summary>
                 鍐欏叆鎿嶄綔鏃ュ織鍒版枃浠朵腑
             </summary>
             <param name="moduleName">妯″潡鍚嶅瓧</param>
             <param name="ex">寮傚父</param>
         </member>
-        <member name="M:MESApplication.ErrorLog.Write(System.String)">
+        <member name="M:MESApplication.Filter.ErrorLog.Write(System.String)">
             <summary>
                 鍐欏叆杩囩▼鏁版嵁鎴栬鏄庡埌鏂囦欢涓紝浠ヤ究璺熻釜
             </summary>
             <param name="moduleName">妯″潡鍚嶅瓧</param>
             <param name="ex">寮傚父</param>
         </member>
-        <member name="M:MESApplication.ErrorLog.LogToFile(System.String,System.String)">
+        <member name="M:MESApplication.Filter.ErrorLog.LogToFile(System.String,System.String)">
             <summary>
                 鏂囨湰鍐欏叆
             </summary>
diff --git a/MESApplication/bin/Release/net8.0/publish/MES.Service.dll b/MESApplication/bin/Release/net8.0/publish/MES.Service.dll
index e7c2965..03132eb 100644
--- a/MESApplication/bin/Release/net8.0/publish/MES.Service.dll
+++ b/MESApplication/bin/Release/net8.0/publish/MES.Service.dll
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/publish/MES.Service.pdb b/MESApplication/bin/Release/net8.0/publish/MES.Service.pdb
index 0d56dda..7c2a9e3 100644
--- a/MESApplication/bin/Release/net8.0/publish/MES.Service.pdb
+++ b/MESApplication/bin/Release/net8.0/publish/MES.Service.pdb
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/publish/MESApplication.dll b/MESApplication/bin/Release/net8.0/publish/MESApplication.dll
index bc9c138..fe539b8 100644
--- a/MESApplication/bin/Release/net8.0/publish/MESApplication.dll
+++ b/MESApplication/bin/Release/net8.0/publish/MESApplication.dll
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/publish/MESApplication.exe b/MESApplication/bin/Release/net8.0/publish/MESApplication.exe
index 3935db5..5039c8f 100644
--- a/MESApplication/bin/Release/net8.0/publish/MESApplication.exe
+++ b/MESApplication/bin/Release/net8.0/publish/MESApplication.exe
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/publish/MESApplication.pdb b/MESApplication/bin/Release/net8.0/publish/MESApplication.pdb
index 7e9550e..6010bfc 100644
--- a/MESApplication/bin/Release/net8.0/publish/MESApplication.pdb
+++ b/MESApplication/bin/Release/net8.0/publish/MESApplication.pdb
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/publish/MESApplication.xml b/MESApplication/bin/Release/net8.0/publish/MESApplication.xml
index 49016c3..2968e69 100644
--- a/MESApplication/bin/Release/net8.0/publish/MESApplication.xml
+++ b/MESApplication/bin/Release/net8.0/publish/MESApplication.xml
@@ -1597,29 +1597,29 @@
             </summary>
             <returns></returns>
         </member>
-        <member name="T:MESApplication.ActionFilter">
+        <member name="T:MESApplication.Filter.ActionFilter">
             <summary>
                 鏂规硶杩囨护鍣�
             </summary>
         </member>
-        <member name="P:MESApplication.ActionFilter.LoggerMonitor">
+        <member name="P:MESApplication.Filter.ActionFilter.LoggerMonitor">
             <summary>
                 鐩戞帶鏃ュ織
             </summary>
         </member>
-        <member name="P:MESApplication.ActionFilter.LoggerError">
+        <member name="P:MESApplication.Filter.ActionFilter.LoggerError">
             <summary>
                 閿欒鏃ュ織
             </summary>
         </member>
-        <member name="M:MESApplication.ActionFilter.OnActionExecuting(Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext)">
+        <member name="M:MESApplication.Filter.ActionFilter.OnActionExecuting(Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext)">
             <summary>
                 鏂规硶鎵ц鍓�
             </summary>
             <param name="context"></param>
             <exception cref="T:System.NotImplementedException"></exception>
         </member>
-        <member name="M:MESApplication.ActionFilter.CreateRequestLogText(System.String,System.String,System.String,System.String,System.String)">
+        <member name="M:MESApplication.Filter.ActionFilter.CreateRequestLogText(System.String,System.String,System.String,System.String,System.String)">
             <summary>
                 鍒涘缓璇锋眰鏃ュ織鏂囨湰
             </summary>
@@ -1629,7 +1629,7 @@
             <param name="actionArgs"></param>
             <returns></returns>
         </member>
-        <member name="M:MESApplication.ActionFilter.CreateResponseLogText(System.String,System.String,System.String,System.Object)">
+        <member name="M:MESApplication.Filter.ActionFilter.CreateResponseLogText(System.String,System.String,System.String,System.Object)">
             <summary>
                 鍒涘缓鍝嶅簲鏃ュ織鏂囨湰
             </summary>
@@ -1639,7 +1639,7 @@
             <param name="result"></param>
             <returns></returns>
         </member>
-        <member name="M:MESApplication.ErrorLog.Write(System.String,System.String,System.Exception)">
+        <member name="M:MESApplication.Filter.ErrorLog.Write(System.String,System.String,System.Exception)">
             <summary>
                 鍐欏叆鎿嶄綔鏃ュ織鍒版枃浠朵腑
             </summary>
@@ -1647,21 +1647,21 @@
             <param name="message">閿欒鏂囨湰淇℃伅</param>
             <param name="ex">寮傚父</param>
         </member>
-        <member name="M:MESApplication.ErrorLog.Write(System.String,System.Exception)">
+        <member name="M:MESApplication.Filter.ErrorLog.Write(System.String,System.Exception)">
             <summary>
                 鍐欏叆鎿嶄綔鏃ュ織鍒版枃浠朵腑
             </summary>
             <param name="moduleName">妯″潡鍚嶅瓧</param>
             <param name="ex">寮傚父</param>
         </member>
-        <member name="M:MESApplication.ErrorLog.Write(System.String)">
+        <member name="M:MESApplication.Filter.ErrorLog.Write(System.String)">
             <summary>
                 鍐欏叆杩囩▼鏁版嵁鎴栬鏄庡埌鏂囦欢涓紝浠ヤ究璺熻釜
             </summary>
             <param name="moduleName">妯″潡鍚嶅瓧</param>
             <param name="ex">寮傚父</param>
         </member>
-        <member name="M:MESApplication.ErrorLog.LogToFile(System.String,System.String)">
+        <member name="M:MESApplication.Filter.ErrorLog.LogToFile(System.String,System.String)">
             <summary>
                 鏂囨湰鍐欏叆
             </summary>

--
Gitblit v1.9.3