1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace AGV_WPF.Model
- {
- public class AGVInfo
- {
- public int AgvCode { get; set; }
- public string ProductCode { get; set; }
- public string HolderBarCode { get; set; }
- public string ProductType { get; set; }
- public int Behavior { get; set; }
- public string stationName { get; set; }
- public DateTime Time { get; set; } = DateTime.Now;
- }
- }
|