using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_DTO.SerialPort { public class MhuNjtakeTDO { /// /// 车型 /// public string trainkind { get; set; } /// /// 车组号 /// public string trainnum { get; set; } /// /// 股道 /// public string track { get; set; } /// /// 车厢 /// public string coachnum { get; set; } /// /// 转向架 /// public string bogie { get; set; } /// /// 班组 /// public string processdept { get; set; } /// /// 任务状态 /// public int taskstatus { get; set; } /// public DateTime createtime { get; set; } } }