zhao
2021-07-19 8347f2fbddbd25369359dcb2da1233ac48a19fdc
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
using HH.WMS.Entitys.Autobom;
using HW.DAL;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace HW.BLL
{
    /// <summary>
    /// 作业区流程表业务逻辑层
    /// </summary>
    /// <returns></returns>
    /// <history>[HanHe(XDL)] CREATED 2018/06/14</history>
  public  class TN_AB_B_WORK_AREA_PROBLL:BaseBLL
  {
      #region 获取作业区流程表集合
      /// <summary>
      /// 根据表名获取作业区流程表集合
        /// </summary>
        /// <param name="tableName">表名</param>
      /// <returns>作业区流程集合</returns>
        /// <history>[HanHe(XDL)] CREATED 2018/06/14</history>
      public List<TN_AB_B_WORK_AREA_PROEntity> GetWorkAreaProList(string tableName)
        {
            return CreateDAL<TN_AB_B_WORK_AREA_PRODAL>().GetWorkAreaProList(tableName);
        }
        #endregion
    }
}