using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace WIDESEAWCS_DTO.TaskInfo
|
{
|
public class Dt_NjTaskDTO
|
{
|
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; }
|
//检修时间
|
public int JXTime { get; set; }
|
|
}
|
}
|