schangxiang@126.com
2024-04-23 f47411fb53aeee0c7bd514cbc841f9030349f448
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
89
90
91
92
93
94
95
96
97
98
99
100
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
 
namespace Admin.NET.Core
{
    /// <summary>
    /// Agv任务表
    /// </summary>
    [Comment("Agv任务表")]
    [Table("les_agv_task")]
    public class AgvTask : DEntityBase
    {
        /// <summary>
        /// 任务类型-入库;出库
        /// </summary>
        [Comment("任务类型-入库;出库")]
        [MaxLength(10)]
        public string TaskType { get; set; }
 
        /// <summary>
        /// 起始位置
        /// </summary>
        [Comment("起始位置")]
        [MaxLength(50)]
        public string StartPlace { get; set; }
 
        /// <summary>
        /// 起始名称
        /// </summary>
        [Comment("起始名称")]
        [MaxLength(50)]
        public string StartName { get; set; }
 
        /// <summary>
        /// 结束位置
        /// </summary>
        [Comment("结束位置")]
        [MaxLength(50)]
        public string EndPlace { get; set; }
 
        /// <summary>
        /// 结束名称
        /// </summary>
        [Comment("结束名称")]
        [MaxLength(50)]
        public string EndName { get; set; }
 
        /// <summary>
        /// 状态
        /// PRISTINE:待执行
        /// TRAVELLING:执行中
        /// FINISHED:完成
        /// </summary>
        [Comment("状态")]
        [MaxLength(50)]
        public string AgvState { get; set; }
 
        /// <summary>
        /// 当前执行的任务
        /// </summary>
        [Comment("当前执行的任务")]
        [MaxLength(100)]
        public string TransportOrder { get; set; }
 
        /// <summary>
        /// 主任务号
        /// </summary>
        [Comment("主任务号")]
        [MaxLength(50)]
        public string TaskNo { get; set; }
 
        /// <summary>
        /// Agv父Id
        /// </summary>
        [Comment("Agv父Id")]
        public long Pid { get; set; }
 
        /// <summary>
        /// 容器编号
        /// </summary>
        [Comment("容器编号")]
        [MaxLength(50)]
        public string ContainerCode { get; set; }
 
        /// <summary>
        /// 所属车间
        /// </summary>
        [Comment("所属车间")]
        public LesWorkShopType WorkShopType { get; set; }
 
 
        /// <summary>
        /// 起始库位名称
        /// </summary>
        [Comment("起始库位名称")]
        [MaxLength(50)]
        public string SourcePlaceName { get; set; }
    }
}