You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
757 B
27 lines
757 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
//Ref:
|
|
using System.Data;
|
|
|
|
using QMAPP.BoraUpgrade.DAL;
|
|
using QMAPP.BoraUpgrade.Entity;
|
|
|
|
namespace QMAPP.BoraUpgrade.BLL
|
|
{
|
|
public class WorkCellHelper
|
|
{
|
|
#region 根据当前工位码提取前序工位处理码
|
|
/// <summary>
|
|
/// 根据当前工位码提取前序工位处理码
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public static string GetPreWorkCellProccessCode(string currWorkCellCode,int _Count,int OutTime,string metairal_type)
|
|
{
|
|
return QMAPP.BoraUpgrade.DAL.WorkCellDAL.GetPreWorkCellProccessCode(currWorkCellCode, _Count, OutTime, metairal_type);
|
|
}
|
|
#endregion
|
|
}
|
|
}
|
|
|