WCS_Station520.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System.Runtime.Serialization;
  2. using WCS.Entity.Protocol.Station;
  3. using WCS.WorkEngineering.Protocol.RGV;
  4. namespace WCS.WorkEngineering.Protocol.Station
  5. {
  6. /// <summary>
  7. /// 520
  8. /// </summary>
  9. [DataContract]
  10. public class WCS_Station520 : IStation520
  11. {
  12. /// <inheritdoc/>
  13. [DataMember(Order = 0)]
  14. public int TaskNumber { get; set; }
  15. /// <inheritdoc/>
  16. [DataMember(Order = 1)]
  17. public short GoodsStart { get; set; }
  18. /// <inheritdoc/>
  19. [DataMember(Order = 2)]
  20. public short GoodsEnd { get; set; }
  21. /// <inheritdoc/>
  22. [DataMember(Order = 3)]
  23. public StationMode Mode { get; set; }
  24. /// <inheritdoc/>
  25. [DataMember(Order = 4)]
  26. public short CmdType { get; set; }
  27. /// <inheritdoc/>
  28. [DataMember(Order = 5)]
  29. public short VoucherNo { get; set; }
  30. RGVCmdType Station520<StationMode, RGVCmdType>.CmdType { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
  31. }
  32. }