WCS_Station521.cs 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. using SqlSugar;
  2. using System.Runtime.Serialization;
  3. namespace WCS.Entity.Protocol.Station
  4. {
  5. [SugarTable(nameof(WCS_Station521), "输送机交互信号 读记录表")]
  6. [DataContract]
  7. public class WCS_Station521 : WCS_PROTOCOLDATA, IStation521
  8. {
  9. [SugarColumn(ColumnDescription = "任务号")]
  10. [DataMember(Order = 0)]
  11. public int Tasknum { get; set; }
  12. [SugarColumn(ColumnDescription = "货物数条码 涂布入库扫码位是AGV任务号")]
  13. [DataMember(Order = 1)]
  14. public int Goodscode { get; set; }
  15. [SugarColumn(ColumnDescription = "货物数量(1.两个位置放1个货物,2.两个位置放2个货物)")]
  16. [DataMember(Order = 2)]
  17. public short Goodsnum { get; set; }
  18. [SugarColumn(ColumnDescription = "货物高度")]
  19. [DataMember(Order = 3)]
  20. public short GoodsSize { get; set; }
  21. [SugarColumn(ColumnDescription = "起始地址")]
  22. [DataMember(Order = 4)]
  23. public short Goodsstart { get; set; }
  24. [SugarColumn(ColumnDescription = "目标地址")]
  25. [DataMember(Order = 5)]
  26. public short Goodsend { get; set; }
  27. [SugarColumn(ColumnDescription = "请求")]
  28. [DataMember(Order = 6)]
  29. public IstationRequest Request { get; set; }
  30. [SugarColumn(ColumnDescription = "命令类型")]
  31. [DataMember(Order = 7)]
  32. public IstationCmdType CmdType { get; set; }
  33. [SugarColumn(ColumnDescription = "凭证号 每次累加")]
  34. [DataMember(Order = 8)]
  35. public short VoucherNo { get; set; }
  36. [SugarColumn(ColumnDescription = "输送机状态")]
  37. [DataMember(Order = 9)]
  38. public IstationStatus Status { get; set; }
  39. }
  40. }