using HH.WMS.DAL; using HH.WMS.DAL.Basic; using HH.WMS.Entitys.Basic; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.WMS.BLL.Basic { public class TN_WM_OPERATION_TYPEBLL:DapperBaseBLL { /// /// 获取业务类型表 /// /// 类型(出库、入库) /// /// [HanHe(xdl)] CREATED 2018/11/20 public List GetOperationTypeList(string opType, string OutSelection) { List operationTypeList = CreateDAL().GetOperationTypeList(opType, OutSelection); return operationTypeList; } } }