using System; using System.Collections.Generic; using System.Linq; using System.Web; using VueWebApi.DLL.DAL; using VueWebApi.Models; using VueWebApi.Tools; namespace VueWebApi.DLL.BLL { public class KanBanManagerentBLL { #region[大岛车间综合看板,生产车间查找产线接口] public static ToMessage ShopSearchLine(string shopcode) { return KanBanManagerentDAL.ShopSearchLine(shopcode); } #endregion #region[大岛车间综合看板,左上产线加工任务接口] public static ToMessage LineSearchTopLeftData(List json) { return KanBanManagerentDAL.LineSearchTopLeftData(json); } #endregion #region[大岛车间综合看板,左下列表接口] public static ToMessage LineSearchBottomLeftData() { return KanBanManagerentDAL.LineSearchBottomLeftData(); } #endregion #region[大岛车间综合看板,右上top排行接口] public static ToMessage LineSearchTopRightData() { return KanBanManagerentDAL.LineSearchTopRightData(); } #endregion #region[大岛车间综合看板,右下top排行接口] public static ToMessage LineSearchBottomRightData() { return KanBanManagerentDAL.LineSearchBottomRightData(); } #endregion } }