using HH.WMS.Entitys.Autobom;
|
using HH.WMS.Entitys.Basic;
|
using HW.DAL;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
|
namespace HW.BLL
|
{
|
/// <summary>
|
/// 流程事件定义业务逻辑层
|
/// </summary>
|
public class TN_AB_B_PRO_EVENT_DEFBLL:BaseBLL
|
{
|
/// <summary>
|
/// 根据表名获取 流程事件定义表集合
|
/// </summary>
|
/// <param name="tableName">表名</param>
|
/// <returns> 流程事件定义表集合</returns>
|
/// <history>[HanHe(XDL)] CREATED 2018/06/28</history>
|
public List<TN_AB_B_PRO_EVENT_DEFEntity> GetProEventDefList(string tableName)
|
{
|
return CreateDAL<TN_AB_B_PRO_EVENT_DEFDAL>().GetProEventDefList(tableName);
|
}
|
}
|
}
|