using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIP_Models.ViewModel { /// /// 获取人工生产数据类 /// public class GetArtificialProduction:PageModel { /// /// 任务号 /// public string taskNo { get; set; } /// /// 任务类型 /// public string tasktype { get; set; } /// /// 任务状态 /// public string taskStatus { get; set; } /// /// 流转卡 /// public string processCardNumber { get; set; } /// /// 生产线 /// public string line { get; set; } /// /// 物料编码 /// public string materialCode { get; set; } /// /// 零件明 /// public string partName { get; set; } /// /// 零件号 /// public string partNumber { get; set; } /// /// 排产类型 /// public string scheduleOrderType { get; set; } /// /// 物料编码 /// public string materialStatus { get; set; } /// /// 创建时间 /// public string createTime { get; set; } /// /// 创建时间开始 /// public string createTimesatart { get; set; } /// /// 创建时间结束 /// public string createTimeEnd { get; set; } /// /// 执行状态 /// public string isCurExecTask { get; set; } } }