1234567891011121314151617181920212223242526272829303132333435363738 |
- using System.Runtime.Serialization;
- using WCS.Entity.Protocol.Station;
- using WCS.WorkEngineering.Protocol.RGV;
- namespace WCS.WorkEngineering.Protocol.Station
- {
- /// <summary>
- /// 520
- /// </summary>
- [DataContract]
- public class WCS_Station520 : IStation520
- {
- /// <inheritdoc/>
- [DataMember(Order = 0)]
- public int TaskNumber { get; set; }
- /// <inheritdoc/>
- [DataMember(Order = 1)]
- public short GoodsStart { get; set; }
- /// <inheritdoc/>
- [DataMember(Order = 2)]
- public short GoodsEnd { get; set; }
- /// <inheritdoc/>
- [DataMember(Order = 3)]
- public StationMode Mode { get; set; }
- /// <inheritdoc/>
- [DataMember(Order = 4)]
- public short CmdType { get; set; }
- /// <inheritdoc/>
- [DataMember(Order = 5)]
- public short VoucherNo { get; set; }
- RGVCmdType Station520<StationMode, RGVCmdType>.CmdType { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
- }
- }
|