bklLiudl
2024-07-23 46cca75880353bbffbd8fef39fe2ea659180ebd7
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
using System;
 
namespace Model
{
    public class Purchase
    {
        public string PurchaseNo { set; get; }
        public string ItemNo { set; get; }
        public string ItemName { set; get; }
        public string CreateUser { set; get; }
        public DateTime CreateTime { set; get; }
        public string AuditFlag { set; get; }
        public string AuditUser { set; get; }
        public DateTime AuditTime { set; get; }
        public DateTime FinishTime { set; get; }
        public string Demo { set; get; }
        public string Demo1 { set; get; }
        public string Demo2{ set; get; }
        public string guid { set; get; }
    }
 
 
  
 
    public class AjaxPurchaseList : Purchase
    {
        public DateTime BeCreateTime { get; set; }
        public DateTime EnCreateTime { get; set; }
        public DateTime BeFinishTime { get; set; }
        public DateTime EnFinishTime { get; set; }
 
        public int pageIndex { get; set; }
        public int pageSize { get; set; }
    }
 
    public class PurchaseMat:Purchase
    {
        public string MatNo { get; set; }
        public string MatName { get; set; }
        public string PackFormat { get; set; }
        public string Unit { get; set; }
        public int Quant_Unit { get; set; }
        public int Quant_Total { get; set; }
        public int Quant_Buy { get; set; }
        public string BuyUser { get; set; }
        public string Demo_11 { get; set; }
        public string Demo_21 { get; set; }
        public string Demo_22 { get; set; }
       
        public string guid_1 { get; set; }
 
        public string MatType { get; set; }
    }
 
    public class AjaxPurchaseMat: PurchaseMat
    {
        public string Operation { set; get; }
        public string List { set; get; }
        public string setBuyUser { set; get; }
 
        public int pageIndex { get; set; }
        public int pageSize { get; set; }
    }
 
    public class ErpInDetail
    {
        public string OrdNo{ get; set; }
        public string MatNo { get; set; }
        public string MatName { get; set; }
        public string PlanQuant { get; set; }
        public string CurQuant { get; set; }
        public string Demo { get; set; }
        public string LingNo{ get; set; }
        public string TuNo { get; set; }
        public string PageNo { get; set; }
        public string MatClass { get; set; }
        public string HeGeZheng { get; set; }
 
        public string PackFormat { get; set; }
 
    }
 
 
 
}