using System;
|
|
namespace Model
|
{
|
public class PaTask
|
{
|
public string TaskId { get; set; }
|
public string OrdNo { get; set; }
|
public string OrdType { get; set; }
|
|
public string MatNo { get; set; }
|
public string Batch { get; set; }
|
public string PackFormat { get; set; }
|
public string UnitFrist { get; set; }
|
|
public string Quant { get; set; }
|
public string Quant_Qy { get; set; }
|
|
public string Palno { get; set; }
|
public string Statu { get; set; }
|
|
public string StartAddr { get; set; }
|
public string StopAddr { get; set; }
|
|
public string Priority { get; set; } //优先级
|
public DateTime CreateTime { get; set; }//生成时间
|
public DateTime COMDAT { get; set; }//完成时间
|
|
public string guid { get; set; }
|
public string Demo { get; set; }
|
public string Demo1 { get; set; }
|
public string Demo2 { get; set; }
|
public string Demo3 { get; set; }
|
public string Demo4 { get; set; }
|
}
|
|
public class AjaxTaskList: PaTask
|
{
|
public int pageIndex { get; set; }
|
public int pageSize { get; set; }
|
public DateTime BeCreateTime { get; set; }
|
public DateTime BeCOMDAT { get; set; }
|
public DateTime EnCreateTime { get; set; }
|
public DateTime EnCOMDAT { get; set; }
|
}
|
|
public class AjaxTaskInfo : PaTask
|
{
|
public string Operation { get;set; }
|
}
|
}
|