hwh
2025-02-10 b16c4927b99063f463f83f855c53fb0af8440072
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
namespace WCS.Application;
 
/// <summary>
/// 任务明细\监控表
/// </summary>
[SugarTable("WCSTaskMonitor","任务明细监控表")]
public class WcsTaskMonitor  : EntityBaseData
{
    /// <summary>
    /// 任务号
    /// </summary>
    [SugarColumn(ColumnName = "TaskNo", ColumnDescription = "任务号", Length = 20)]
    public string? TaskNo { get; set; }
    
    /// <summary>
    /// 交互工位号
    /// </summary>
    [SugarColumn(ColumnName = "PlcId", ColumnDescription = "交互工位号")]
    public long? PlcId { get; set; }
    
    /// <summary>
    /// 交互位置
    /// </summary>
    [SugarColumn(ColumnName = "PlcName", ColumnDescription = "交互位置", Length = 32)]
    public string? PlcName { get; set; }
    
    /// <summary>
    /// 起始位置
    /// </summary>
    [SugarColumn(ColumnName = "StartLocat", ColumnDescription = "起始位置", Length = 20)]
    public string? StartLocat { get; set; }
    
    /// <summary>
    /// 目标位置
    /// </summary>
    [SugarColumn(ColumnName = "EndLocat", ColumnDescription = "目标位置", Length = 32)]
    public string? EndLocat { get; set; }
 
    /// <summary>
    /// 目标位置
    /// </summary>
    [SugarColumn(ColumnName = "EndRoadway", ColumnDescription = "目标巷道", Length = 20)]
    public string? EndRoadway { get; set; }
 
    /// <summary>
    /// 交互信息
    /// </summary>
    [SugarColumn(ColumnName = "InteractiveMsg", ColumnDescription = "交互信息", Length = 100)]
    public string? InteractiveMsg { get; set; }
    
    /// <summary>
    /// 异常记录
    /// </summary>
    [SugarColumn(ColumnName = "ErrorMsg", ColumnDescription = "异常记录", Length = 100)]
    public string? ErrorMsg { get; set; }
    
    /// <summary>
    /// 托盘号
    /// </summary>
    [SugarColumn(ColumnName = "PalletNo", ColumnDescription = "托盘号", Length = 20)]
    public string? PalletNo { get; set; }
    
    /// <summary>
    /// 状态
    /// </summary>
    [SugarColumn(ColumnName = "Status", ColumnDescription = "状态")]
    public TaskStatusEnum? Status { get; set; }
    
}