bklLiudl
2024-07-23 800b01a48d309fa19a624e943b3a8fb2e8eef5c8
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
using System;
 
namespace Model
{
    public class ErpOut
    {
        public string Guid { get; set; }
        public string OrdNo { get; set; }
        public string OrdType { get; set; }
        public string Statu { get; set; }
        public string DepartGuid { get; set; }
        public string AccessCode { get; set; }
        public string AccessName { get; set; }
        public DateTime? CompletionTime { get; set; }
        public string CreateUser { get; set; }
        public DateTime? CreateTime { get; set; }
        public string UpdateUser { get; set; }
        public DateTime? UpdateTime { get; set; }
        public string Demo { get; set; }
    }
 
    public class ErpOutZ
    {
        public string Guid { get; set; }
        public string OrdNo { get; set; }
        public string OrdType { get; set; }
        public string Statu { get; set; }
        public string DepartGuid { get; set; }
        public string AccessCode { get; set; }
        public DateTime? CompletionTime { get; set; }
        public string CreateUser { get; set; }
        public DateTime? CreateTime { get; set; }
        public string UpdateUser { get; set; }
        public DateTime? UpdateTime { get; set; }
        public string Demo { get; set; }
        public string Palno { get; set; }
        public string Quant { get; set; }
 
        public string LocationCode { get; set; }
        public string PickerUser { get; set; }
    }
 
    public class AjaxErpOutList: ErpOut
    {
        public string BatchNo { get; set; }
        public string BatchDemo { get; set; }
        public string MatNo { get; set; }
        public string MatName { get; set; }
        public string LingNo { get; set; }
        public string TuNo { get; set; }
        public string DetailDemo { get; set; }
        public string PickerUser { get; set; }
 
        public int pageIndex { get; set; }
        public int pageSize { get; set; }
        public DateTime? BeginTime { get; set; }
        public DateTime? EndTime { get; set; }
 
    }
    public class ErpOutDetail
    {
        public string Guid { get; set; }
        public string OrdNo { get; set; }
        public string LocationCode { get; set; }
        public string MatCode { get; set; }
        public string PackFormat { get; set; }
        public string Palno { get; set; }
        public string MatGuid { get; set; }
        public string StoreGuid { get; set; }
        public string MatNo { get; set; }
        public string MatName { get; set; }
        public string Unit { get; set; }
        public string MayType { get; set; }
        public string DepartGuid { get; set; }
        public string OutQuant { get; set; }
        public string CurQuant { get; set; }
        public string LingNo { get; set; }
        public string TuNo { get; set; }
        public string PageNo { get; set; }
        public string Certificate { get; set; }
        public string BatchNo { get; set; }
        public string BatchDemo { get; set; }
        public string Statu { get; set; }
        public string PickerUser { get; set; }
        public int? IsDel { get; set; }
        public string DetailDemo { get; set; }
        public string Demo { get; set; }
        public DateTime? CreateTime { get; set; }
        public string CreateUser { get; set; }
        public DateTime? UpdateTime { get; set; }
        public string UpdateUser { get; set; }
    }
 
    public class AjaxErpOutInfo : AjaxErpOutList
    {
        public string Operation { get;set; }
        public string list { set; get; }
    }
}