From f7661ec17f87c4185bbe906fe98e114435a4da5a Mon Sep 17 00:00:00 2001
From: yl <ykxkd@outlook.com>
Date: 星期四, 19 十月 2023 12:21:25 +0800
Subject: [PATCH] 1.更改菜单接口排序问题,模具待维修接口过滤问题、增加APP菜单图标 2.更改模具维修申请单、维修单据流水号反写问题 3.增加模具查询功能接口

---
 VueWebCoreApi/DLL/BLL/ExcelCheckBLL.cs |   13 +++++++------
 1 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/VueWebCoreApi/DLL/BLL/ExcelCheckBLL.cs b/VueWebCoreApi/DLL/BLL/ExcelCheckBLL.cs
index 668c121..a90435e 100644
--- a/VueWebCoreApi/DLL/BLL/ExcelCheckBLL.cs
+++ b/VueWebCoreApi/DLL/BLL/ExcelCheckBLL.cs
@@ -1,5 +1,6 @@
 锘縰sing System;
 using System.Collections.Generic;
+using System.Data;
 using System.Linq;
 using System.Threading.Tasks;
 using VueWebCoreApi.DLL.DAL;
@@ -11,23 +12,23 @@
     public class ExcelCheckBLL
     {
         #region銆怑xcel瀵煎叆妯℃澘楠岃瘉銆�
-        public static ToMessage ExcelCheck(string fileCode, string savePath)
+        public static ToMessage ExcelCheck(string fileCode, List<DataTable> dataTable)
         {
-            return ExcelCheckDAL.ExcelCheck(fileCode, savePath);
+            return ExcelCheckDAL.ExcelCheck(fileCode, dataTable);
         }
         #endregion
 
         #region[Excel瀵煎叆鏁版嵁楠岃瘉]
-        public static List<ExcelErro> ExcelCheckData(string fileCode, string savePath, out string stuCode, out string message, out int count)
+        public static List<ExcelErro> ExcelCheckData(string fileCode, List<DataTable> dataTable, out string stuCode, out string message, out int count)
         {
-            return ExcelCheckDAL.ExcelCheckData(fileCode, savePath, out stuCode, out message, out count);
+            return ExcelCheckDAL.ExcelCheckData(fileCode, dataTable, out stuCode, out message, out count);
         }
         #endregion
 
         #region[Excel瀵煎叆鏁版嵁]
-        public static ToMessage ExcelImportSubmit(string fileCode, string savePath, string username)
+        public static ToMessage ExcelImportSubmit(string FileCode, List<DataTable> dataTable, User us)
         {
-            return ExcelCheckDAL.ExcelImportSubmit(fileCode, savePath, username);
+            return ExcelCheckDAL.ExcelImportSubmit(FileCode, dataTable, us);
         }
         #endregion
     }

--
Gitblit v1.9.3