ReleaseInfo.cs 807 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace AGV_WPF.Model
  7. {
  8. public class ReleaseInfo
  9. {
  10. public int AgvCode { get; set; }
  11. public string Station { get; set; } = string.Empty;
  12. public string ReleaseType { get; set; }
  13. public DateTime CreateTime { get; set; }
  14. }
  15. public class ReleaseInfo2
  16. {
  17. public string StationID { get; set; } = string.Empty;
  18. }
  19. public class ReleaseInfo3
  20. {
  21. public string boxParts { get; set; } = string.Empty;
  22. public string boxPartsName { get; set; } = string.Empty;
  23. public string taskNo { get; set; } = string.Empty;
  24. public string trigger { get; set; } = string.Empty;
  25. }
  26. }