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 { /// /// 流程事件定义业务逻辑层 /// public class TN_AB_B_PRO_EVENT_DEFBLL:BaseBLL { /// /// 根据表名获取 流程事件定义表集合 /// /// 表名 /// 流程事件定义表集合 /// [HanHe(XDL)] CREATED 2018/06/28 public List GetProEventDefList(string tableName) { return CreateDAL().GetProEventDefList(tableName); } } }