dengjunjie
2024-11-27 5be0f5bc3b9a83a3b30c9915bd5309279d140244
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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;
        }
    }
}