zhao
2021-07-02 081df17b8cc4a6e7e4f4e1e1887f24810e3ec2f9
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
using DataAynchronization.HW.DAL;
using HH.WMS.Entitys.Algorithm;
using HH.WMS.Entitys.Basic;
using HW.BLL;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace DataAynchronization.HW.BLL
{
    /// <summary>
    /// TN_AB_B_ITEM_SAFET业务逻辑层
    /// </summary>
    /// <returns></returns>
    /// <history>[HanHe(XDL)] CREATED 2018/08/31</history>
   public class TN_AB_B_ITEM_SAFETYBLL:BaseBLL
   {
       #region 获取TN_AB_B_ITEM_SAFETY表集合
       /// <summary>
       /// 根据表名获取TN_AB_B_ITEM_SAFETY表集合
       /// </summary>
       /// <param name="tableName">表名</param>
       /// <returns>TN_AB_B_ITEM_SAFETY集合</returns>
       /// <history>[HanHe(XDL)] CREATED 2018/08/31</history>
       public List<TN_AB_B_ITEM_SAFETYEntity> GetItemSaftyList(string tableName)
       {
           return CreateDAL<TN_AB_B_ITEM_SAFETYDAL>().GetItemSaftyList(tableName);
       }
       #endregion
   }
}