From cce41b1bb9dcd9cfebb512f9a71b28007c4c2c81 Mon Sep 17 00:00:00 2001
From: zyf <1071160500@qq.com>
Date: 星期四, 27 二月 2025 10:44:10 +0800
Subject: [PATCH] ERP其他出库新增字段

---
 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                |   36 ++++
 MESApplication/bin/Release/net8.0/publish/MESApplication.dll        |    0 
 MESApplication/bin/Debug/net8.0/MES.Service.dll                     |    0 
 MESApplication/Controllers/BasicData/ErpQTCKController.cs           |  271 +++++++++++++++++++++++++++++++++
 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 
 MES.Service/Modes/QTCK.cs                                           |   16 +
 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        |   36 ++++
 MESApplication/bin/Debug/net8.0/MESApplication.dll                  |    0 
 MES.Service/Dto/webApi/ErpQTCKDetailDto.cs                          |    6 
 MES.Service/bin/Debug/net8.0/MES.Service.dll                        |    0 
 MESApplication/bin/Debug/net8.0/MESApplication.xml                  |   36 ++++
 MESApplication/Properties/PublishProfiles/FolderProfile.pubxml.user |    2 
 MES.Service/service/BasicData/ErpQTCKManager.cs                     |   17 +-
 MESApplication/bin/Debug/net8.0/MESApplication.exe                  |    0 
 MES.Service/bin/Release/net8.0/MES.Service.dll                      |    0 
 MES.Service/Dto/webApi/ErpQTCKDto.cs                                |    3 
 MES.Service/bin/Release/net8.0/MES.Service.pdb                      |    0 
 MES.Service/Modes/QTCKDetail.cs                                     |    2 
 29 files changed, 406 insertions(+), 19 deletions(-)

diff --git a/MES.Service/Dto/webApi/ErpQTCKDetailDto.cs b/MES.Service/Dto/webApi/ErpQTCKDetailDto.cs
index 8759e2e..6f077db 100644
--- a/MES.Service/Dto/webApi/ErpQTCKDetailDto.cs
+++ b/MES.Service/Dto/webApi/ErpQTCKDetailDto.cs
@@ -3,13 +3,13 @@
 public class ErpQTCKDetailDto
 {
     public string? Type { get; set; }
-    public string? ERPID { get; set; }
-    public string? ERP_HID { get; set; }
+    public decimal? ERPID { get; set; }
+    public decimal? ERP_HID { get; set; }
     public string? FMaterialId { get; set; } // 鐗╂枡缂栫爜
     public string? FMaterialName { get; set; } // 鐗╂枡鍚嶇О
     public string? FModel { get; set; } // 瑙勬牸鍨嬪彿
     public string? FUnitID { get; set; } // 鍗曚綅
-    public string? FQty { get; set; } // 鐢宠鏁伴噺
+    public decimal? FQty { get; set; } // 鐢宠鏁伴噺
     public string? FBaseUnitId { get; set; } // 鍩烘湰鍗曚綅
     public string? FStockId { get; set; } // 浠撳簱
     public string? FStockLocId { get; set; } // 浠撲綅
diff --git a/MES.Service/Dto/webApi/ErpQTCKDto.cs b/MES.Service/Dto/webApi/ErpQTCKDto.cs
index f26dbd5..6dac51a 100644
--- a/MES.Service/Dto/webApi/ErpQTCKDto.cs
+++ b/MES.Service/Dto/webApi/ErpQTCKDto.cs
@@ -3,7 +3,7 @@
 public class ErpQTCKDto
 {
     public string? Type { get; set; }
-    public string? ERPID { get; set; }
+    public decimal? ERPID { get; set; }
     public string? FBillNo { get; set; } // 鍗曟嵁缂栧彿
     public string? FBillTypeID { get; set; } // 鍗曟嵁绫诲瀷
     public string? FDate { get; set; } // 鐢宠鏃ユ湡
@@ -22,6 +22,7 @@
     public string? FCloserId { get; set; } // 鍏抽棴浜�
     public string? FCloseDate { get; set; } // 鍏抽棴鏃ユ湡
     public string? FApplyType { get; set; } // 鐢宠绫诲瀷
+    public string? F_UNW_CKLX { get; set; } // 鐢宠绫诲瀷
 
 
 }
\ No newline at end of file
diff --git a/MES.Service/Modes/QTCK.cs b/MES.Service/Modes/QTCK.cs
index 4ca85dd..4b060c5 100644
--- a/MES.Service/Modes/QTCK.cs
+++ b/MES.Service/Modes/QTCK.cs
@@ -42,7 +42,7 @@
         /// 瀹㈡埛ID
         ///</summary>
         [SugarColumn(ColumnName = "FCustId")]
-        public decimal? CustId { get; set; }
+        public string CustId { get; set; }
 
         /// <summary>
         /// 閮ㄩ棬ID
@@ -84,7 +84,7 @@
         /// 淇敼浜篒D
         ///</summary>
         [SugarColumn(ColumnName = "FModifierId")]
-        public decimal? ModifierId { get; set; }
+        public string ModifierId { get; set; }
 
         /// <summary>
         /// 淇敼鏃ユ湡
@@ -96,7 +96,7 @@
         /// 瀹℃壒浜篒D
         ///</summary>
         [SugarColumn(ColumnName = "FApproverId")]
-        public decimal? ApproverId { get; set; }
+        public string ApproverId { get; set; }
 
         /// <summary>
         /// 瀹℃壒鏃ユ湡
@@ -108,13 +108,13 @@
         /// 鍏抽棴鐘舵��
         ///</summary>
         [SugarColumn(ColumnName = "FCloseStatus")]
-        public decimal? CloseStatus { get; set; }
+        public string CloseStatus { get; set; }
 
         /// <summary>
         /// 鍏抽棴浜篒D
         ///</summary>
         [SugarColumn(ColumnName = "FCloserId")]
-        public decimal? CloserId { get; set; }
+        public string CloserId { get; set; }
 
         /// <summary>
         /// 鍏抽棴鏃ユ湡
@@ -128,6 +128,12 @@
         [SugarColumn(ColumnName = "FApplyType")]
         public string ApplyType { get; set; }
 
+        /// <summary>
+        /// 鍑哄簱绫诲瀷
+        ///</summary>
+        [SugarColumn(ColumnName = "F_UNW_CKLX")]
+        public string F_UNW_CKLX { get; set; }
+
 
     }
 }
diff --git a/MES.Service/Modes/QTCKDetail.cs b/MES.Service/Modes/QTCKDetail.cs
index bd3a50b..1588603 100644
--- a/MES.Service/Modes/QTCKDetail.cs
+++ b/MES.Service/Modes/QTCKDetail.cs
@@ -94,7 +94,7 @@
         /// 璐т富
         ///</summary>
         [SugarColumn(ColumnName = "FOwnerId")]
-        public decimal? OwnerId { get; set; }
+        public string OwnerId { get; set; }
 
         /// <summary>
         /// 璁″垝璺熻釜鍙�
diff --git a/MES.Service/bin/Debug/net8.0/MES.Service.dll b/MES.Service/bin/Debug/net8.0/MES.Service.dll
index 512dcbb..cf097fc 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 555f589..b28ede0 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 b2bf1c4..502d4db 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 e56eead..e3d4178 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/ErpQTCKManager.cs b/MES.Service/service/BasicData/ErpQTCKManager.cs
index 93c67cd..b61774e 100644
--- a/MES.Service/service/BasicData/ErpQTCKManager.cs
+++ b/MES.Service/service/BasicData/ErpQTCKManager.cs
@@ -73,7 +73,7 @@
             //var baOrUpdate = QTCKDetailManager.InsertRange(mesQTCKDatas);
             //if (orUpdate && baOrUpdate) return true;
 
-            UseTransaction(db =>
+            var update_res=UseTransaction(db =>
             {
 
                 var id = db.Insertable(mesQTCK).ExecuteReturnIdentity();
@@ -88,7 +88,7 @@
                 return 1;
             });
 
-
+            if (update_res==1) return true;
             throw new NotImplementedException("鎻掑叆鎴栨洿鏂板け璐�");
         }
 
@@ -122,20 +122,21 @@
                 BillNo = erpDto.FBillNo,
                 FDate = ParseDateTime(erpDto.FDate) ?? null,
                 BillType = erpDto.FBillTypeID, // 鍗曟嵁绫诲瀷
-                CustId = Convert.ToDecimal(erpDto.FCustId), // 瀹㈡埛ID
+                CustId = erpDto.FCustId, // 瀹㈡埛ID
                 DeptId = erpDto.FDeptId, //閿�鍞儴闂�
                 BizType = erpDto.FBizType, // 
                 OwnerTypeIdHead = erpDto.FOwnerTypeIdHead, // 
                 Note = erpDto.FNote, // 
                 CreatorId = erpDto.FCreatorId, // 
                 CreateDate = ParseDateTime(erpDto.FCreateDate) ?? null, // 
-                ModifierId = Convert.ToDecimal(erpDto.FModifierId), // 
+                ModifierId = erpDto.FModifierId, // 
                 ModifyDate = ParseDateTime(erpDto.FModifyDate) ?? null, // 
                 ApproveDate = ParseDateTime(erpDto.FApproveDate) ?? null, // 
-                CloseStatus = Convert.ToDecimal(erpDto.FCloseStatus), // 
-                CloserId = Convert.ToDecimal(erpDto.FCloserId), // 
+                CloseStatus = erpDto.FCloseStatus, // 
+                CloserId = erpDto.FCloserId, // 
                 CloseDate = ParseDateTime(erpDto.FCloseDate) ?? null, // 
-                ApplyType = erpDto.FApplyType
+                ApplyType = erpDto.FApplyType,
+                F_UNW_CKLX= erpDto.F_UNW_CKLX
 
             };
 
@@ -183,7 +184,7 @@
                     StockLocId = erpDto.FStockLocId,//
                     Lot = erpDto.FLot,//
                     OwnerTypeId = erpDto.FOwnerTypeId,//
-                    OwnerId = Convert.ToDecimal(erpDto.FOwnerId),//
+                    OwnerId = erpDto.FOwnerId,//
                     MtoNo = erpDto.FMtoNo,//
                     StockStatusId = erpDto.FStockStatusId,//
                     EntryNote = erpDto.FEntryNote,//
diff --git a/MESApplication/Controllers/BasicData/ErpQTCKController.cs b/MESApplication/Controllers/BasicData/ErpQTCKController.cs
new file mode 100644
index 0000000..ccbcc58
--- /dev/null
+++ b/MESApplication/Controllers/BasicData/ErpQTCKController.cs
@@ -0,0 +1,271 @@
+锘縰sing Microsoft.AspNetCore.Mvc;
+using Microsoft.Extensions.Logging;
+using SqlSugar;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Dynamic;
+using MES.Service.Modes;
+using MES.Service.service;
+using MES.Service.util;
+using MES.Service.service.BasicData;
+using MES.Service.Dto.webApi;
+using Newtonsoft.Json;
+
+namespace MESApplication.Controllers
+{
+    [ApiController]
+    [Route("api/[controller]")]
+    public class ErpQTCKController : ControllerBase
+    {
+        
+       
+
+        private readonly MessageCenterManager _manager = new();
+
+        private QTCKManager m = new QTCKManager();
+
+        private readonly string METHOD = "POST";
+
+        private readonly string TableName = "MES_ERPQTCK";
+
+        private readonly string URL = "http://localhost:10054/api/ErpQTCK/";
+
+
+        //
+        [HttpPost("Save")]
+        public ResponseResult Save(ErpQTCK QTCKOrder)
+        {
+            var entity = new MessageCenter();
+            entity.TableName = TableName;
+            entity.Url = URL + "Save";
+            entity.Method = METHOD;
+            entity.Data = JsonConvert.SerializeObject(QTCKOrder);
+            entity.Status = 1;
+            entity.CreateBy = "PL017";
+            try
+            {
+                dynamic resultInfos = new ExpandoObject();
+                var save = m.Save(QTCKOrder);
+
+                resultInfos.tbBillList = save;
+
+                entity.Result = 0;
+                if (save) entity.Result = 1;
+
+                entity.DealWith = 1;
+                _manager.save(entity);
+
+                return new ResponseResult
+                {
+                    status = 0,
+                    message = "OK",
+                    data = resultInfos
+                };
+            }
+            catch (Exception ex)
+            {
+                entity.Result = 0;
+
+                entity.DealWith = 0;
+
+                entity.ResultData = ex.Message;
+
+                _manager.save(entity);
+
+                return ResponseResult.ResponseError(ex);
+            }
+        }
+
+        [HttpPost("SaveList")]
+        public ResponseResult SaveList(List<ErpQTCK> units)
+        {
+            var entity = new MessageCenter();
+            entity.TableName = TableName;
+            entity.Url = URL + "SaveList";
+            entity.Method = METHOD;
+            entity.Data = JsonConvert.SerializeObject(units);
+            entity.Status = 1;
+            entity.CreateBy = "PL017";
+            try
+            {
+                dynamic resultInfos = new ExpandoObject();
+                var save = m.SaveList(units);
+                resultInfos.tbBillList = save;
+
+                entity.Result = 0;
+                if (save) entity.Result = 1;
+
+                entity.DealWith = 1;
+                _manager.save(entity);
+
+                return new ResponseResult
+                {
+                    status = 0,
+                    message = "OK",
+                    data = resultInfos
+                };
+            }
+            catch (Exception ex)
+            {
+                entity.Result = 0;
+
+                entity.DealWith = 0;
+
+                entity.ResultData = ex.Message;
+
+                _manager.save(entity);
+
+                return ResponseResult.ResponseError(ex);
+            }
+        }
+
+
+        /***杩涘叆妯$増绠$悊鍙互淇敼妯$増***/
+
+        /// <summary>
+        /// 鑾峰彇鎵�鏈�
+        /// </summary>
+        /// <returns></returns>
+        [HttpPost("GetList")]
+        public ResponseResult GetList()
+        {
+            try
+            {
+                dynamic resultInfos = new ExpandoObject();
+                resultInfos.tbBillList = m.GetList();
+                return new ResponseResult
+                {
+                    status = 0,
+                    message = "OK",
+                    data = resultInfos
+                };
+            }
+            catch (Exception ex)
+            {
+                return ResponseResult.ResponseError(ex);
+            }
+        }
+
+
+        /// <summary>
+        /// 鏍规嵁涓婚敭鑾峰彇
+        /// </summary>
+        /// <returns></returns>
+        [HttpPost("GetById")]
+        public ResponseResult GetById(int id)
+        {
+            try
+            {
+                dynamic resultInfos = new ExpandoObject();
+                resultInfos.tbBillList = m.GetById(id);
+                return new ResponseResult
+                {
+                    status = 0,
+                    message = "OK",
+                    data = resultInfos
+                };
+            }
+            catch (Exception ex)
+            {
+                return ResponseResult.ResponseError(ex);
+            }
+        }
+
+        /// <summary>
+        /// 鏍规嵁涓婚敭鍒犻櫎
+        /// </summary>
+        /// <returns></returns>
+        [HttpPost("DeleteByIds")]
+        public ResponseResult DeleteByIds([FromBody] object[] ids)
+        {
+            try
+            {
+                dynamic resultInfos = new ExpandoObject();
+                resultInfos.tbBillList = m.DeleteByIds(ids);
+                return new ResponseResult
+                {
+                    status = 0,
+                    message = "OK",
+                    data = resultInfos
+                };
+            }
+            catch (Exception ex)
+            {
+                return ResponseResult.ResponseError(ex);
+            }
+        }
+
+        /// <summary>
+        /// 娣诲姞 
+        /// </summary>
+        /// <returns></returns>
+        [HttpPost("Insert")]
+        public ResponseResult Add([FromBody] QTCK data)
+        {
+            try
+            {
+                dynamic resultInfos = new ExpandoObject();
+                resultInfos.tbBillList = m.Insert(data);
+                return new ResponseResult
+                {
+                    status = 0,
+                    message = "OK",
+                    data = resultInfos
+                };
+            }
+            catch (Exception ex)
+            {
+                return ResponseResult.ResponseError(ex);
+            }
+        }
+        /// <summary>
+        /// 娣诲姞杩斿洖鑷
+        /// </summary>
+        /// <returns></returns>
+        [HttpPost("InsertReturnIdentity")]
+        public ResponseResult InsertReturnIdentity([FromBody] QTCK data)
+        {
+            try
+            {
+                dynamic resultInfos = new ExpandoObject();
+                resultInfos.tbBillList = m.InsertReturnIdentity(data);
+                return new ResponseResult
+                {
+                    status = 0,
+                    message = "OK",
+                    data = resultInfos
+                };
+            }
+            catch (Exception ex)
+            {
+                return ResponseResult.ResponseError(ex);
+            }
+        }
+
+        /// <summary>
+        /// 淇敼
+        /// </summary>
+        /// <returns></returns>
+        [HttpPost("Update")]
+        public ResponseResult Update([FromBody] QTCK data)
+        {
+            try
+            {
+                dynamic resultInfos = new ExpandoObject();
+                resultInfos.tbBillList = m.Update(data);
+                return new ResponseResult
+                {
+                    status = 0,
+                    message = "OK",
+                    data = resultInfos
+                };
+            }
+            catch (Exception ex)
+            {
+                return ResponseResult.ResponseError(ex);
+            }
+        }
+    }
+}
diff --git a/MESApplication/Properties/PublishProfiles/FolderProfile.pubxml.user b/MESApplication/Properties/PublishProfiles/FolderProfile.pubxml.user
index efd05c6..67a6fa4 100644
--- a/MESApplication/Properties/PublishProfiles/FolderProfile.pubxml.user
+++ b/MESApplication/Properties/PublishProfiles/FolderProfile.pubxml.user
@@ -5,7 +5,7 @@
 <Project>
   <PropertyGroup>
     <_PublishTargetUrl>C:\Users\qewqer\Desktop\MES\SG\StandardPda\MESApplication\bin\Release\net8.0\publish\</_PublishTargetUrl>
-    <History>True|2025-01-13T07:35:48.6521519Z||;True|2025-01-08T16:15:03.8764923+08:00||;True|2024-12-30T15:00:59.8090011+08:00||;True|2024-12-06T16:11:01.2090466+08:00||;True|2024-11-26T09:07:33.5654976+08:00||;True|2024-11-20T15:49:27.1100474+08:00||;True|2024-11-16T18:18:42.4224922+08:00||;True|2024-11-15T09:32:12.6287354+08:00||;True|2024-11-13T10:19:32.3283327+08:00||;True|2024-09-06T14:40:56.3762241+08:00||;True|2024-08-20T17:12:00.2924570+08:00||;True|2024-08-17T10:57:05.6670396+08:00||;True|2024-08-17T10:56:46.8068041+08:00||;True|2024-08-16T14:09:17.0526491+08:00||;True|2024-08-15T08:40:32.8134665+08:00||;True|2024-08-14T10:00:27.7017207+08:00||;True|2024-08-14T08:54:44.8284031+08:00||;True|2024-08-07T10:32:10.3689256+08:00||;True|2024-08-05T15:45:03.0864530+08:00||;True|2024-08-03T09:59:13.7916520+08:00||;True|2024-07-31T17:27:28.1965929+08:00||;True|2024-07-31T15:27:34.7943845+08:00||;True|2024-07-30T15:04:50.5849235+08:00||;True|2024-07-30T14:09:06.2877325+08:00||;True|2024-07-29T16:11:30.4493940+08:00||;True|2024-07-23T14:30:34.4591002+08:00||;True|2024-07-22T14:17:39.8186158+08:00||;True|2024-04-10T12:55:31.3963752+08:00||;True|2024-04-08T13:59:25.5487203+08:00||;True|2024-04-06T09:30:09.5350539+08:00||;True|2024-04-06T08:46:05.8814658+08:00||;True|2024-04-05T14:06:52.0448024+08:00||;True|2024-04-05T12:47:46.0561601+08:00||;True|2024-02-26T08:46:22.0988887+08:00||;True|2024-02-24T19:17:13.6770376+08:00||;True|2024-02-24T14:32:37.4450337+08:00||;True|2024-02-23T10:22:06.5150173+08:00||;True|2024-02-22T13:19:56.6997993+08:00||;True|2024-02-22T10:53:17.7929585+08:00||;True|2024-02-21T17:08:06.5553444+08:00||;True|2024-02-19T16:24:37.4912012+08:00||;True|2024-02-02T10:07:23.2726075+08:00||;True|2024-02-02T08:36:49.2904460+08:00||;True|2024-01-29T17:44:43.6800769+08:00||;True|2024-01-23T09:47:26.7811926+08:00||;True|2024-01-18T16:23:30.3373836+08:00||;True|2024-01-17T14:22:04.2552286+08:00||;True|2024-01-16T16:54:42.2316892+08:00||;True|2024-01-16T16:37:23.8028858+08:00||;True|2024-01-16T09:25:24.4007775+08:00||;True|2024-01-15T10:18:57.3362616+08:00||;True|2024-01-15T10:07:14.2044763+08:00||;True|2024-01-10T14:03:36.4451130+08:00||;True|2024-01-09T16:45:32.9601815+08:00||;True|2024-01-06T14:16:34.2732220+08:00||;True|2024-01-06T14:11:45.2134717+08:00||;True|2024-01-06T11:30:58.9198887+08:00||;</History>
+    <History>True|2025-02-27T02:43:45.2314689Z||;True|2025-02-21T16:39:35.2452658+08:00||;True|2025-01-13T15:35:48.6521519+08:00||;True|2025-01-08T16:15:03.8764923+08:00||;True|2024-12-30T15:00:59.8090011+08:00||;True|2024-12-06T16:11:01.2090466+08:00||;True|2024-11-26T09:07:33.5654976+08:00||;True|2024-11-20T15:49:27.1100474+08:00||;True|2024-11-16T18:18:42.4224922+08:00||;True|2024-11-15T09:32:12.6287354+08:00||;True|2024-11-13T10:19:32.3283327+08:00||;True|2024-09-06T14:40:56.3762241+08:00||;True|2024-08-20T17:12:00.2924570+08:00||;True|2024-08-17T10:57:05.6670396+08:00||;True|2024-08-17T10:56:46.8068041+08:00||;True|2024-08-16T14:09:17.0526491+08:00||;True|2024-08-15T08:40:32.8134665+08:00||;True|2024-08-14T10:00:27.7017207+08:00||;True|2024-08-14T08:54:44.8284031+08:00||;True|2024-08-07T10:32:10.3689256+08:00||;True|2024-08-05T15:45:03.0864530+08:00||;True|2024-08-03T09:59:13.7916520+08:00||;True|2024-07-31T17:27:28.1965929+08:00||;True|2024-07-31T15:27:34.7943845+08:00||;True|2024-07-30T15:04:50.5849235+08:00||;True|2024-07-30T14:09:06.2877325+08:00||;True|2024-07-29T16:11:30.4493940+08:00||;True|2024-07-23T14:30:34.4591002+08:00||;True|2024-07-22T14:17:39.8186158+08:00||;True|2024-04-10T12:55:31.3963752+08:00||;True|2024-04-08T13:59:25.5487203+08:00||;True|2024-04-06T09:30:09.5350539+08:00||;True|2024-04-06T08:46:05.8814658+08:00||;True|2024-04-05T14:06:52.0448024+08:00||;True|2024-04-05T12:47:46.0561601+08:00||;True|2024-02-26T08:46:22.0988887+08:00||;True|2024-02-24T19:17:13.6770376+08:00||;True|2024-02-24T14:32:37.4450337+08:00||;True|2024-02-23T10:22:06.5150173+08:00||;True|2024-02-22T13:19:56.6997993+08:00||;True|2024-02-22T10:53:17.7929585+08:00||;True|2024-02-21T17:08:06.5553444+08:00||;True|2024-02-19T16:24:37.4912012+08:00||;True|2024-02-02T10:07:23.2726075+08:00||;True|2024-02-02T08:36:49.2904460+08:00||;True|2024-01-29T17:44:43.6800769+08:00||;True|2024-01-23T09:47:26.7811926+08:00||;True|2024-01-18T16:23:30.3373836+08:00||;True|2024-01-17T14:22:04.2552286+08:00||;True|2024-01-16T16:54:42.2316892+08:00||;True|2024-01-16T16:37:23.8028858+08:00||;True|2024-01-16T09:25:24.4007775+08:00||;True|2024-01-15T10:18:57.3362616+08:00||;True|2024-01-15T10:07:14.2044763+08:00||;True|2024-01-10T14:03:36.4451130+08:00||;True|2024-01-09T16:45:32.9601815+08:00||;True|2024-01-06T14:16:34.2732220+08:00||;True|2024-01-06T14:11:45.2134717+08:00||;True|2024-01-06T11:30:58.9198887+08:00||;</History>
     <LastFailureDetails />
   </PropertyGroup>
 </Project>
\ No newline at end of file
diff --git a/MESApplication/bin/Debug/net8.0/MES.Service.dll b/MESApplication/bin/Debug/net8.0/MES.Service.dll
index 512dcbb..cf097fc 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 555f589..b28ede0 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 af99c12..8dae077 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 6f2c892..c93aed1 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 4582c7f..1fb690f 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/Debug/net8.0/MESApplication.xml b/MESApplication/bin/Debug/net8.0/MESApplication.xml
index c906c3c..2555364 100644
--- a/MESApplication/bin/Debug/net8.0/MESApplication.xml
+++ b/MESApplication/bin/Debug/net8.0/MESApplication.xml
@@ -66,6 +66,42 @@
             </summary>
             <returns></returns>
         </member>
+        <member name="M:MESApplication.Controllers.ErpQTCKController.GetList">
+            <summary>
+            鑾峰彇鎵�鏈�
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.ErpQTCKController.GetById(System.Int32)">
+            <summary>
+            鏍规嵁涓婚敭鑾峰彇
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.ErpQTCKController.DeleteByIds(System.Object[])">
+            <summary>
+            鏍规嵁涓婚敭鍒犻櫎
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.ErpQTCKController.Add(MES.Service.Modes.QTCK)">
+            <summary>
+            娣诲姞 
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.ErpQTCKController.InsertReturnIdentity(MES.Service.Modes.QTCK)">
+            <summary>
+            娣诲姞杩斿洖鑷
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.ErpQTCKController.Update(MES.Service.Modes.QTCK)">
+            <summary>
+            淇敼
+            </summary>
+            <returns></returns>
+        </member>
         <member name="M:MESApplication.Controllers.BasicData.MesCustomerController.GetList">
             <summary>
                 鑾峰彇鎵�鏈�
diff --git a/MESApplication/bin/Release/net8.0/MES.Service.dll b/MESApplication/bin/Release/net8.0/MES.Service.dll
index b2bf1c4..502d4db 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 e56eead..e3d4178 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 a63505f..8d8d29d 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 6f2c892..c93aed1 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 3def73d..d6eacaf 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 c906c3c..2555364 100644
--- a/MESApplication/bin/Release/net8.0/MESApplication.xml
+++ b/MESApplication/bin/Release/net8.0/MESApplication.xml
@@ -66,6 +66,42 @@
             </summary>
             <returns></returns>
         </member>
+        <member name="M:MESApplication.Controllers.ErpQTCKController.GetList">
+            <summary>
+            鑾峰彇鎵�鏈�
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.ErpQTCKController.GetById(System.Int32)">
+            <summary>
+            鏍规嵁涓婚敭鑾峰彇
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.ErpQTCKController.DeleteByIds(System.Object[])">
+            <summary>
+            鏍规嵁涓婚敭鍒犻櫎
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.ErpQTCKController.Add(MES.Service.Modes.QTCK)">
+            <summary>
+            娣诲姞 
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.ErpQTCKController.InsertReturnIdentity(MES.Service.Modes.QTCK)">
+            <summary>
+            娣诲姞杩斿洖鑷
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.ErpQTCKController.Update(MES.Service.Modes.QTCK)">
+            <summary>
+            淇敼
+            </summary>
+            <returns></returns>
+        </member>
         <member name="M:MESApplication.Controllers.BasicData.MesCustomerController.GetList">
             <summary>
                 鑾峰彇鎵�鏈�
diff --git a/MESApplication/bin/Release/net8.0/publish/MES.Service.dll b/MESApplication/bin/Release/net8.0/publish/MES.Service.dll
index b2bf1c4..502d4db 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 e56eead..e3d4178 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 a63505f..8d8d29d 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 6f2c892..c93aed1 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 3def73d..d6eacaf 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 c906c3c..2555364 100644
--- a/MESApplication/bin/Release/net8.0/publish/MESApplication.xml
+++ b/MESApplication/bin/Release/net8.0/publish/MESApplication.xml
@@ -66,6 +66,42 @@
             </summary>
             <returns></returns>
         </member>
+        <member name="M:MESApplication.Controllers.ErpQTCKController.GetList">
+            <summary>
+            鑾峰彇鎵�鏈�
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.ErpQTCKController.GetById(System.Int32)">
+            <summary>
+            鏍规嵁涓婚敭鑾峰彇
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.ErpQTCKController.DeleteByIds(System.Object[])">
+            <summary>
+            鏍规嵁涓婚敭鍒犻櫎
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.ErpQTCKController.Add(MES.Service.Modes.QTCK)">
+            <summary>
+            娣诲姞 
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.ErpQTCKController.InsertReturnIdentity(MES.Service.Modes.QTCK)">
+            <summary>
+            娣诲姞杩斿洖鑷
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.ErpQTCKController.Update(MES.Service.Modes.QTCK)">
+            <summary>
+            淇敼
+            </summary>
+            <returns></returns>
+        </member>
         <member name="M:MESApplication.Controllers.BasicData.MesCustomerController.GetList">
             <summary>
                 鑾峰彇鎵�鏈�

--
Gitblit v1.9.3