yanjinhui
2025-02-28 4665f816ee8c2eb6fa9e6d1662eeca2131f60159
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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; }
        
    }
}