using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Web;
|
|
namespace iWareCommon
|
{
|
public class SrmConveyorStationEntity
|
{
|
public int RFromStationNo { get; set; }
|
//public bool RCanPut { get; set; }
|
public int RTaskId { get; set; }
|
public int RToStationNo { get; set; }
|
public string RCode0 { get; set; }
|
public string RCode1 { get; set; }
|
public string RCode2 { get; set; }
|
public string RCode3 { get; set; }
|
public string RCode4 { get; set; }
|
public string RCode5 { get; set; }
|
public string RCode6 { get; set; }
|
public string RCode7 { get; set; }
|
public string RCode8 { get; set; }
|
public string RCode9 { get; set; }
|
public string RCode10 { get; set; }
|
public string RCode11 { get; set; }
|
public string RCode12 { get; set; }
|
public string RCode13 { get; set; }
|
public string RCode14 { get; set; }
|
public string RCode15 { get; set; }
|
public string RCode16 { get; set; }
|
public string RCode17 { get; set; }
|
public string RCode18 { get; set; }
|
public string RCode19 { get; set; }
|
|
public bool RAuto { get; set; }
|
public bool RAlarm { get; set; }
|
public bool RReady { get; set; }
|
public bool RBusy { get; set; }
|
public bool RRun { get; set; }
|
public bool RForward { get; set; }
|
public bool RReversal { get; set; }
|
public bool RUp { get; set; }
|
public bool RDown { get; set; }
|
public bool RPh1 { get; set; }
|
public bool RPh2 { get; set; }
|
public bool RPrH { get; set; }
|
public bool RPrL { get; set; }
|
public bool RSpare1 { get; set; }
|
public bool RSpare2 { get; set; }
|
public int RAlarmCode { get; set; }
|
//public int RCargoType { get; set; }
|
|
|
public bool RTaskFinish { get; set; }
|
|
|
/// <summary>
|
/// 报警代码
|
/// </summary>
|
public string AlarmCode { get; set; }
|
|
public SrmConveyorStationEntity() { }
|
}
|
}
|