zhao
2021-06-11 98186752629a7bd38965418af84db382d90b9c07
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WMS.Entitys.Entitys.Mes
{
    [Table("AGV_Task_execution_record")]
    public class AGV_Task_execution_record
    {
        [Column("TaskNo")]
        public string TaskNo { get; set; }
 
        [Column("LoadNo")]
        public string LoadNo { get; set; }
 
        [Column("RfldInformation")]
        public string RfldInformation { get; set; }
 
        [Column("CreateDate")]
        public DateTime? CreateDate { get; set; }
 
        [Column("ExecutionTime")]
        public DateTime? ExecutionTime { get; set; }
 
        [Column("CompleteTime")]
        public DateTime? CompleteTime { get; set; }
 
        [Column("AgvNo")]
        public string AgvNo { get; set; }
 
        [Column("StartLocation")]
        public string StartLocation { get; set; }
 
        [Column("EndLocation")]
        public string EndLocation { get; set; }
 
        [Column("TransportStatus")]
        public int? TransportStatus { get; set; }
 
        [Column("CancellationPossible")]
        public string CancellationPossible { get; set; }
 
        [Column("HasBeenReceived")]
        public string HasBeenReceived { get; set; }
    }
}