Station.cs 627 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace WCS.Entity.Protocol
  7. {
  8. public class WCS_STATIONDATA : WCS_PROTOCOLDATA, IStation
  9. {
  10. public int TASKNUM { get; set; }
  11. public short GOODSCODE { get; set; }
  12. public short GOODSTYPE { get; set; }
  13. public short GOODSSIZE { get; set; }
  14. public short GOODSSTART { get; set; }
  15. public short GOODSEND { get; set; }
  16. public short WEIGHT { get; set; }
  17. public StationFlags FLAGS { get; set; }
  18. public short CONFIRM { get; set; }
  19. }
  20. }