zongzhibin
2024-11-27 5e610f4c9d9870b393720bc5fcc856e97bc2ea4b
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
 
using iWareCommon.Utils;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace iWareSDA_SQL.MES.Entity
{
   public class Mes_BatchOrderUPIParam
    {
 
        public int Id { get; set; }
 
        public string PlanNo { get; set; }
 
        public string OrderId { get; set; }
 
        public string UPI { get; set; }
 
        public string DetailName { get; set; }
 
        public float Length { get; set; }
 
        public float Width { get; set; }
 
        public float Thk { get; set; }
 
        public string Matgrid { get; set; }
 
        public int IsEB { get; set; }
 
        public int DRNum { get; set; }
 
        public int IsPA { get; set; }
 
        public int MaterialIndeX { get; set; }
 
        public string PackageCode { get; set; }
 
        public float MachineXCenter { get; set; }
 
        public float MachineYCenter { get; set; }
 
        public float MachineZCenter { get; set; }
 
        public float Rotation { get; set; }
 
        public int Sequence { get; set; }
 
        public int Shelf { get; set; }
 
        public string Backup1 { get; set; }
 
        public string Backup2 { get; set; }
 
        public string Backup3 { get; set; }
 
        public string Backup4 { get; set; }
 
        public int Status { get; set; }
 
        public int IsScannOne { get; set; }
 
        public int IsScannTwo { get; set; }
        public int IsScannThree { get; set; }
        public int IsScannFour { get; set; }
        public int IsScannFive { get; set; }
 
        
    }
}