AGVInfo.cs 525 B

1234567891011121314151617181920212223242526
  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 AGVInfo
  9. {
  10. public int AgvCode { get; set; }
  11. public string ProductCode { get; set; }
  12. public string HolderBarCode { get; set; }
  13. public string ProductType { get; set; }
  14. public int Behavior { get; set; }
  15. public string stationName { get; set; }
  16. public DateTime Time { get; set; } = DateTime.Now;
  17. }
  18. }