ke_junjie
2025-06-04 84620534eb627e95811b971a4b552b6a177829bf
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
using iWare.Wms.Core.Enum;
using iWare.Wms.Core.Util.LowCode.Dto;
using Microsoft.EntityFrameworkCore;
using System;
 
namespace iWare.Wms.Application
{
    /// <summary>
    /// 任务管理输出参数
    /// </summary>
    public class WmsTaskOutput
    {
        /// <summary>
        /// 任务号
        /// </summary>
        public string TaskNo { get; set; }
 
        /// <summary>
        /// 任务类别
        /// </summary>
        public TaskCategoryEnum? TaskCategory { get; set; }
 
        /// <summary>
        /// 任务类型
        /// </summary>
        public iWare.Wms.Core.Enum.TaskType? Tasktype { get; set; }
        
        /// <summary>
        /// 任务状态
        /// </summary>
        public iWare.Wms.Core.Enum.TaskStateEnum TaskState { get; set; }
        
        /// <summary>
        /// 托盘编号
        /// </summary>
        public string ContainerCode { get; set; }
 
        /// <summary>
        /// 出发地库位编码    
        /// </summary>
        [Comment("出发地库位编码")]
        public string FromLocationCode { get; set; }
        /// <summary>
        /// 目的地库位编码    
        /// </summary>
        [Comment("目的地库位编码")]
        public string ToLocationCode { get; set; }
 
        /// <summary>
        /// 优先级    
        /// </summary>
        [Comment("优先级")]
        public int TaskPriority { get; set; }
 
        /// <summary>
        /// 任务Id
        /// </summary>
        public long? Id { get; set; }
 
        /// <summary>
        /// 零件号
        /// </summary>
        public string PartCode { get; set; }
 
        /// <summary>
        /// AGV号
        /// </summary>
        public string AgvCode { get; set; }
    }
}