using System.Collections.Generic; namespace Kean.Application.Command.ViewModels { /// /// 任务视图 /// public sealed class Task { /// /// 库房 /// public int Warehouse { get; set; } /// /// 托盘条码 /// public string Barcode { get; set; } /// /// 负载规格 /// public int? Spec { get; set; } /// /// 操作位置 /// public object Original { get; set; } /// /// 目标位置 /// public object Destination { get; set; } /// /// 优先级 /// public int? Priority { get; set; } /// /// 操作者 /// public int Operator { get; set; } /// /// 是否手动 /// public bool Manual { get; set; } /// /// 标签 /// public string Tag { get; set; } /// /// 前续连接 /// public int? Previous { get; set; } /// /// 物料 /// public IEnumerable Materials { get; set; } /// /// 批次号 /// public IEnumerable Batchs { get; set; } /// /// 事务 /// public string Transaction { get; set; } /// /// 标识 /// public int Id { get; set; } /// /// 物料属性 状态 /// public string Qc { get; set; } /// /// 物料属性 是否可用 /// public bool enable { get; set; } /// /// 物料属性 是否本地 /// public string IsLocal { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 申请编号 /// public string RequestNo { get; set; } } }