using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_DTO.SerialPort { public class PutNjtDTO { /// /// 序号 /// public int id { get; set; } /// /// 车型 /// 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; } } }