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
using System;
 
namespace Model
{
    public class DeliveryOutDetail
    {
        public string OrdNo { get; set; }
        public DateTime CreateTime { get; set; }
        public string RealName { get; set; }
        public string MatNo { get; set; }
        public string MatName { get; set; }
        public string UnitName { get; set; }
        public string MatType { get; set; }
        public string TypeName { get; set; }
        public string LocationCode { get; set; }
        public string Palno { get; set; }
        public string PlanQuant { get; set; }
        public string CurQuant { get; set; }
        public string PickerUser { get; set; }
        public string LingNo { get; set; }
        public string TuNo { get; set; }
        public string PageNo { get; set; }
        public string Certificate { get; set; }
        public string PackFormat { get; set; }
        public string Demo { get; set; }
        public string OrdnoType { get; set; }
        public string DepartGuid { get; set; }
    }
 
    public class AjaxOutDetail : DeliveryOutDetail
    {
        public int pageIndex { get; set; }
        public int pageSize { get; set; }
        public DateTime BeginTime { get; set; }
        public DateTime EndTime { get; set; }
 
        // public string OrdnoType { get; set; }
    }
}