using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Threading.Tasks;
|
using VueWebCoreApi.DLL.DAL;
|
using VueWebCoreApi.Models;
|
using VueWebCoreApi.Tools;
|
|
namespace VueWebCoreApi.DLL.BLL
|
{
|
public class MouldManagerBLL
|
{
|
#region[模具清单列表查询]
|
public static ToMessage MouldMangerSearch(string mouldstaus, string onstate, string mouldcode, string mouldname, string mouldspec, string createuser, string opendate, string closedate, int startNum, int endNum, string prop, string order)
|
{
|
return MouldManagerDAL.MouldMangerSearch(mouldstaus, onstate, mouldcode, mouldname, mouldspec, createuser, opendate, closedate, startNum, endNum, prop, order);
|
}
|
#endregion
|
|
#region[模具清单新增编辑]
|
public static ToMessage AddUpdateMouldManger(string mouldcode, string mouldname, string mouldspec, string warehousecode, string surplife, string resilife, string status, string mouldpart, string opertype, User us)
|
{
|
return MouldManagerDAL.AddUpdateMouldManger(mouldcode, mouldname, mouldspec, warehousecode, surplife, resilife, status, mouldpart, opertype, us);
|
}
|
#endregion
|
|
#region[模具清单删除]
|
public static ToMessage DeleteMouldManger(string mouldcode, User us)
|
{
|
return MouldManagerDAL.DeleteMouldManger(mouldcode, us);
|
}
|
#endregion
|
|
|
#region[模具点检项列表查询]
|
public static ToMessage MouldCheckItemSearch(string checkitemcode, string checkitemname, string checkdescr, int startNum, int endNum, string prop, string order)
|
{
|
return MouldManagerDAL.MouldCheckItemSearch(checkitemcode, checkitemname, checkdescr, startNum, endNum, prop, order);
|
}
|
#endregion
|
|
#region[模具点检项新增编辑]
|
public static ToMessage AddUpdateMouldCheckItem(string checkitemid, string checkitemcode, string checkitemname, string checkitemdescr, User us, string opertype)
|
{
|
return MouldManagerDAL.AddUpdateMouldCheckItem(checkitemid, checkitemcode, checkitemname, checkitemdescr, us, opertype);
|
}
|
#endregion
|
|
#region[模具点检项删除]
|
public static ToMessage DeleteMouldCheckItem(string checkitemcode,User us)
|
{
|
return MouldManagerDAL.DeleteMouldCheckItem(checkitemcode,us);
|
}
|
#endregion
|
|
|
#region[模具点检标准列表查询]
|
public static ToMessage DeviceCheckStandArdSearch(string checkstandcode, string checkstandname, string checkstandescr, int startNum, int endNum, string prop, string order)
|
{
|
return MouldManagerDAL.DeviceCheckStandArdSearch(checkstandcode, checkstandname, checkstandescr, startNum, endNum, prop, order);
|
}
|
#endregion
|
|
#region[模具点检标准编辑/查看获取数据]
|
public static ToMessage ViewMouldCheckStanedSearch(string checkstand_code)
|
{
|
return MouldManagerDAL.ViewMouldCheckStanedSearch(checkstand_code);
|
}
|
#endregion
|
|
#region[模具点检标准新增编辑]
|
public static ToMessage AddUpdateMouldCheckStandArd(string opertype, RoutEdit json, User us)
|
{
|
return MouldManagerDAL.AddUpdateMouldCheckStandArd(opertype, json, us);
|
}
|
#endregion
|
|
#region[模具点检标准删除]
|
public static ToMessage DeleteMouldCheckStaned(string checkstand_code, User us)
|
{
|
return MouldManagerDAL.DeleteMouldCheckStaned(checkstand_code, us);
|
}
|
#endregion
|
|
#region[模具点检标准关联模具查询]
|
public static ToMessage CheckStanedAssociationMould(string checkstand_code)
|
{
|
return MouldManagerDAL.CheckStanedAssociationMould(checkstand_code);
|
}
|
#endregion
|
|
#region [模具点检标准关联模具提交]
|
public static ToMessage SaveCheckStanedAssociationMould(string checkstand_code, User us, List<ObjectData> json)
|
{
|
return MouldManagerDAL.SaveCheckStanedAssociationMould(checkstand_code, us, json);
|
}
|
#endregion
|
|
|
#region[模具保养项列表查询]
|
public static ToMessage MouldMaiItemSearch(string maiitemcode, string maiitemname, string maidescr, int startNum, int endNum, string prop, string order)
|
{
|
return MouldManagerDAL.MouldMaiItemSearch(maiitemcode, maiitemname, maidescr, startNum, endNum, prop, order);
|
}
|
#endregion
|
|
#region[模具保养项新增编辑]
|
public static ToMessage AddUpdateMouldMaiItem(string maiitemid, string maiitemcode, string maiitemname, string maiitemdescr, User us, string opertype)
|
{
|
return MouldManagerDAL.AddUpdateMouldMaiItem(maiitemid, maiitemcode, maiitemname, maiitemdescr, us, opertype);
|
}
|
#endregion
|
|
#region[模具保养项删除]
|
public static ToMessage DeleteMouldMaiItem(string maiitemcode, User us)
|
{
|
return MouldManagerDAL.DeleteMouldMaiItem(maiitemcode, us);
|
}
|
#endregion
|
|
|
#region[模具保养标准列表查询]
|
public static ToMessage MouldRepairStandArdSearch(string repairstandcode, string repairstandname, string repairstandescr, int startNum, int endNum, string prop, string order)
|
{
|
return MouldManagerDAL.MouldRepairStandArdSearch(repairstandcode, repairstandname, repairstandescr, startNum, endNum, prop, order);
|
}
|
#endregion
|
|
#region[模具保养标准编辑/查看获取数据]
|
public static ToMessage ViewMouldRepairStanedSearch(string repairstand_code)
|
{
|
return MouldManagerDAL.ViewMouldRepairStanedSearch(repairstand_code);
|
}
|
#endregion
|
|
#region[模具保养标准新增编辑]
|
public static ToMessage AddUpdateMouldRepairStandArd(string opertype, RoutEdit json, User us)
|
{
|
return MouldManagerDAL.AddUpdateMouldRepairStandArd(opertype, json, us);
|
}
|
#endregion
|
|
#region[模具保养标准删除]
|
public static ToMessage DeleteMouldRepairStaned(string repairstand_code, User us)
|
{
|
return MouldManagerDAL.DeleteMouldRepairStaned(repairstand_code, us);
|
}
|
#endregion
|
|
#region[模具保养标准关联模具查询]
|
public static ToMessage RepairStanedAssociationMould(string repairstand_code)
|
{
|
return MouldManagerDAL.RepairStanedAssociationMould(repairstand_code);
|
}
|
#endregion
|
|
#region [模具保养标准关联模具提交]
|
public static ToMessage SaveRepairStanedAssociationMould(string repairstand_code, User us, List<ObjectData> json)
|
{
|
return MouldManagerDAL.SaveRepairStanedAssociationMould(repairstand_code, us, json);
|
}
|
#endregion
|
}
|
}
|