schangxiang@126.com
2024-09-10 429923d78ca4a016ab86adf30d189eb0e7774925
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using iWare.Wms.Core.Enum;
 
namespace iWare.Wms.Core
{
    /// <summary>
    /// 任务管理
    /// </summary>
    [Table("wms_task")]
    [Comment("任务管理")]
    public class WmsTask:DEntityBase
    {
        /// <summary>
        /// 任务号
        /// </summary>
        [Comment("任务号")]
        [Required]
 
        [MaxLength(50)]
        public string TaskNo { get; set; }
 
        /// <summary>
        /// 任务方式;数据字典
        /// </summary>
        [Comment("任务方式")]
        [Required]
 
        public TaskModel TaskModel { get; set; }
 
        /// <summary>
        /// 任务类型;数据字典
        /// </summary>
        [Comment("任务类型")]
        [Required]
 
        public TaskType TaskType { get; set; }
 
        /// <summary>
        /// 任务级别
        /// </summary>
        [Comment("任务级别")]
        [Required]
 
        public int TaskLevel { get; set; }
 
        /// <summary>
        /// 任务状态;数据字典
        /// </summary>
        [Comment("任务状态")]
        [Required]
 
        public Enum.TaskStatus TaskStatus { get; set; }
 
        /// <summary>
        /// 托盘编号
        /// </summary>
        [Comment("托盘编号")]
        [Required]
 
        [MaxLength(50)]
        public string ContainerCode { get; set; }
 
        /// <summary>
        /// 起始库位
        /// </summary>
        [Comment("起始库位")]
        [Required]
 
        [MaxLength(50)]
        public string SourcePlace { get; set; }
 
        /// <summary>
        /// 目标库位
        /// </summary>
        [Comment("目标库位")]
        [Required]
 
        [MaxLength(50)]
        public string ToPlace { get; set; }
 
        /// <summary>
        /// 巷道
        /// </summary>
        [Comment("巷道")]
        [Required]
 
        public int Aisle { get; set; }
 
        /// <summary>
        /// 库区名称
        /// </summary>
        [Comment("库区名称")]
        [Required]
 
        [MaxLength(50)]
        public string AreaName { get; set; }
 
        /// <summary>
        /// 组盘记录ID
        /// </summary>
        [Comment("组盘记录ID")]
        [Required]
 
        [MaxLength(50)]
        public string OrderNo { get; set; }
 
        /// <summary>
        /// 发送次数
        /// </summary>
        [Comment("发送次数")]
 
        public int SendTimes { get; set; }
 
        /// <summary>
        /// 任务执行堆垛机ID
        /// </summary>
        [Comment("任务执行堆垛机ID")]
 
        public int DodeviceId { get; set; }
 
        /// <summary>
        /// 设备执行节点ID
        /// </summary>
        [Comment("设备执行节点ID")]
 
        [MaxLength(50)]
        public string DodevicenodeId { get; set; }
 
        /// <summary>
        /// 设备类型
        /// </summary>
        [Comment("设备类型")]
 
        [MaxLength(50)]
        public string Dodevicetype { get; set; }
 
 
    }
}