yl
2025-11-19 4718d79b98b135e9f07c0c201386a50f3c131171
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
using VueWebCoreApi.DLL.DAL;
using VueWebCoreApi.Models;
using VueWebCoreApi.Tools;
 
namespace VueWebCoreApi.DLL.BLL
{
    public class ExcelCheckBLL
    {
        #region【Excel导入模板验证】
        public static ToMessage ExcelCheck(string fileCode, List<DataTable> dataTable)
        {
            return ExcelCheckDAL.ExcelCheck(fileCode, dataTable);
        }
        #endregion
 
        #region[Excel导入数据验证]
        public static List<ExcelErro> ExcelCheckData(string fileCode, List<DataTable> dataTable, out string stuCode, out string message, out int count)
        {
            return ExcelCheckDAL.ExcelCheckData(fileCode, dataTable, out stuCode, out message, out count);
        }
        #endregion
 
        #region[Excel导入数据]
        public static ToMessage ExcelImportSubmit(string FileCode, List<DataTable> dataTable, User us)
        {
            return ExcelCheckDAL.ExcelImportSubmit(FileCode, dataTable, us);
        }
        #endregion
    }
}