Tjiny
2025-05-19 4c8b2eea64bcd0ae14602a2a6e993b2d04c80ee0
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
using System.Windows.Forms;
 
namespace HH.WCS.Mobox3.RiDong.dto;
 
/// <summary>
/// 作业模型
/// </summary>
public class OperationDto
{
    /// <summary>
    /// 容器编码
    /// </summary>
    public string cntrCode { get; set; }
 
    /// <summary>
    /// 起点
    /// </summary>
    public string startLocation { get; set; } = "RKK-1";
 
    /// <summary>
    /// 终点
    /// </summary>
    public string endLocation { get; set; } = "CKK-1";
 
    /// <summary>
    /// 任务类型(1:常规入库,2:常规出库,3:盘点入库,4:盘点出库,5:指引出库,6:紧急出库,7:空托出库)
    /// </summary>
    public int taskType { get; set; }
 
    /// <summary>
    /// 单号
    /// </summary>
    public string odd { get; set; }
}