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
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Permissions;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WMS.Entitys.Entitys.Mes
{
    /// <summary>
    /// 移送任务日志 Transport invitation log
    /// </summary>
    [Table("AGV_Transport_Request_log")]
    public class AGV_Transport_Request_log
    {
        /// <summary>
        /// 唯一号 GUID
        /// </summary>
        [Column("TaskId")]
        public string TaskId { get; set; }
 
        /// <summary>
        /// 任务号task number
        /// </summary>
        [Column("TaskNo")]
        public string TaskNo { get; set; }
 
        /// <summary>
        /// 请求类型 RequestType
        /// </summary>
        [Column("RequestType")]
        public int RequestType { get; set; }
 
        /// <summary>
        /// 工装具号 tool number (Load Id)
        /// </summary>
        [Column("LoadNo")]
        public string LoadNo { get; set; }
 
        /// <summary>
        /// 工装类型 Load type
        /// </summary>
        [Column("LoadType")]
        public string LoadType { get; set; }
 
        /// <summary>
        /// 任务优先级 Task priority 
        /// </summary>
        [Column("TaskPriority")]
        public int TaskPriority { get; set; }
 
        /// <summary>
        /// 运送状态transport status
        /// </summary>
        [Column("TransportStatus")]
        public int TransportStatus { get; set; }
 
        /// <summary>
        /// 起始位置Start location
        /// </summary>
        [Column("StartLocation")]
        public string StartLocation { get; set; }
 
        /// <summary>
        /// 终点位置End location
        /// </summary>
        [Column("EndLocation")]
        public string EndLocation { get; set; }
 
        /// <summary>
        /// 时间戳Time Stamp
        /// </summary>
        [Column("TimeStamp")]
        public DateTime? TimeStamp { get; set; }
 
        /// <summary>
        /// 创建时间creation time
        /// </summary>
        [Column("CreateDate")]
        public DateTime? CreateDate { get; set; }
 
        /// <summary>
        /// 是否接收receive or not
        /// </summary>
        [Column("HasBeenReceived")]
        public string HasBeenReceived { get; set; }
    }
}