恒石成品库WCS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.1 KiB

using System;
using System.Collections.Generic;
using System.Text;
namespace Model
{
public class MIOControlStatus
{
string _statusCode;
/// <summary>
/// 与管理任务交互的调度任务状态编码
/// </summary>
public string StatusCode
{
get { return _statusCode; }
set { _statusCode = value; }
}
int _statusID;
/// <summary>
/// 与管理任务交互的调度任务状态ID
/// </summary>
public int StatusID
{
get { return _statusID; }
set { _statusID = value; }
}
string _remark;
/// <summary>
/// 任务状态描述
/// </summary>
public string Remark
{
get { return _remark; }
set { _remark = value; }
}
string _ForkNo;
/// <summary>
/// 货叉序号集合:1,2,3,4
/// </summary>
public string ForkNo
{
get { return _ForkNo; }
set { _ForkNo = value; }
}
}
}