using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_DTO.TaskInfo { public class CZTaskDto { /// /// 任务ID /// public string DTaskId { get; set; } /// /// 产品型号 /// public string ProductCode { get; set; } /// /// 工单号 /// public string OrderNo { get; set; } /// /// 数量 /// public int Number { get; set; } /// /// 叫料机台 /// public string InputValue { get; set; } /// /// 任务类型 /// public string TaskType { get; set; } } public class CZTaskFinshDto { /// /// 任务ID /// public string TaskId { get; set; } /// /// 产品型号 /// public string ProductCode { get; set; } /// /// 任务楼层 /// public int Floor { get; set; } /// /// 工单号 /// public string OrderNo { get; set; } /// /// 数量 /// public int FinishNum { get; set; } /// /// 叫料机台 /// public string Tags { get; set; } /// /// 物料条码 /// public string MaterialBarcode { get; set; } } public class CZTaskBarCodeDto { /// /// 1号条码 /// public string BarCode1 { get; set; } /// /// 2号条码 /// public string BarCode2 { get; set; } /// /// 3号条码 /// public string BarCode3 { get; set; } /// /// 4号条码 /// public string BarCode4 { get; set; } } public class TaskGenerationDto { /// /// 任务ID /// public string taskid { get; set; } /// /// 任务类型 /// public string taskType { get; set; } /// /// 任务楼层 /// public string floor { get; set; } /// /// 参数1 起点 /// public string param1 { get; set; } /// /// 参数2 终点 /// public string param2 { get; set; } /// /// 参数3 批次号 /// public string param3 { get; set; } /// /// 参数4 条码 /// public string param4 { get; set; } /// /// 参数5 型号 /// public string param5 { get; set; } /// /// 备用 /// public string param6 { get; set; } /// /// 备用 /// public string param7 { get; set; } /// /// 备用 /// public string param8 { get; set; } /// /// 备用 /// public string param9 { get; set; } } }