Conveyor.cs
929 Bytes
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HHWCS.Model
{
/// <summary>
/// 输送机
/// </summary>
public class Conveyor
{
/// <summary>
/// 输送线状态 1=自动运行 0=故障或手动
/// </summary>
public bool RunningStatus { get; set; }
/// <summary>
/// 是否有货 1=有货 0=无货物
/// </summary>
public bool PalletExist { get; set; }
/// <summary>
/// 托盘目的地
/// </summary>
public int PalletDestinationAddress { get; set; }
/// <summary>
/// 当前输送线编号
/// </summary>
public int ConveyorNo { get; set; }
/// <summary>
/// 托盘条码(按实际长度)
/// </summary>
public string PalletBarcode { get; set; }
}
}