bklLiudl
2024-07-23 277bbae216debe7e6c04e8cc6ee6e1ba9763e14b
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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; }
    }
}