zhao
2021-07-19 8347f2fbddbd25369359dcb2da1233ac48a19fdc
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WMS.Entitys.Entitys.Mes
{
    /// <summary>
    /// 移送任务 Transport invitation
    /// </summary>
    [Table("AGV_Transport_Request")]
    public class AGV_Transport_Request
    {
        /// <summary>
        /// 任务号
        /// </summary>
        [Column("TaskNo")]
        public string TaskNo { get; set; }
        /// <summary>
        /// 请求类型
        /// </summary>
        [Column("RequestType")]
        public int RequestType { get; set; }
        /// <summary>
        /// 工装具号
        /// </summary>
        [Column("LoadNo")]
        public string LoadNo { get; set; }
        /// <summary>
        /// 工装类型
        /// </summary>
        [Column("LoadType")]
        public string LoadType { get; set; }
        /// <summary>
        /// 物料号
        /// </summary>
        [Column("MaterielCode")]
        public string MaterielCode { get; set; }
        /// <summary>
        /// 物料名称
        /// </summary>
        [Column("MaterielName")]
        public string MaterielName { get; set; }
        /// <summary>
        /// 数量
        /// </summary>
        [Column("Quantity")]
        public decimal Quantity { get; set; }
        /// <summary>
        /// 任务优先级
        /// </summary>
        [Column("TaskPriority")]
        public int TaskPriority { get; set; }
        /// <summary>
        /// 起始位置
        /// </summary>
        [Column("StartLocation")]
        public string StartLocation { get; set; }
        /// <summary>
        /// 终点位置
        /// </summary>
        [Column("EndLocation")]
        public string EndLocation { get; set; }
        /// <summary>
        /// 创建时间
        /// </summary>
        [Column("CreateDate")]
        public DateTime? CreateDate { get; set; }
        /// <summary>
        /// 是否接收
        /// </summary>
        [Column("HasBeenReceived")]
        public string HasBeenReceived { get; set; }
 
    }
}