看板后端(旧版不需要了)
YL
2021-05-13 ef64fca176cd33702a999981c7f91e1b77a1adb3
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
36
37
38
39
40
41
42
using MyWebApi.DLL.DAL;
using MyWebApi.Models;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Web;
 
namespace MyWebApi.DLL.BLL
{
    public class LoadDataBLL
    {
        #region【业务逻辑层数据过度,流水线看板图型数据】
        public static List<DataTable> LineData(string LineCode,string LineCodeList)
        {
            return LoadDataDAL.LineData(LineCode,LineCodeList);
        }
        #endregion
 
        #region【业务逻辑层数据过度,流水线看板图型数据】
        public static List<LineWork> LineTableData(string LineCode, int startNum,int endNum, out int count)
        {
            return LoadDataDAL.LineTableData(LineCode,startNum, endNum, out count);
        }
        #endregion
 
        #region[仓库看板看板码表数据]
        public static DataTable HouseTopData(string houseCode)
        {
            return LoadDataDAL.HouseTopData(houseCode);
        }
        #endregion
 
        #region[仓库看板看板详情数据]
        public static DataTable HouseDataTable(string houseCode)
        {
            return LoadDataDAL.HouseDataTable(houseCode);
        }
        #endregion
    }
}