using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using WIDESEAWCS_QuartzJob;
|
using WIDESEAWCS_Tasks.ProductionLineJob;
|
|
namespace WIDESEAWCS_Tasks
|
{
|
public partial class CommonProductionLineJob
|
{
|
/// <summary>
|
/// 产线
|
/// </summary>
|
/// <param name="conveyorLine"></param>
|
/// <returns></returns>
|
public List<Task> ProductionLineExtend(OtherDevice ProductionLine)
|
{
|
var traytype = ProductionLine.GetValue<ProductionLineDBName, short>(ProductionLineDBName.trayType);
|
ProductionLine.SetValue(ProductionLineDBName.trayType, traytype);
|
List<Task> tasks = new List<Task>();
|
return tasks;
|
}
|
}
|
}
|