1
huangxiaoqiang
2025-06-17 3d1f19f7ab5f3adb28a29d5b955dc298aadf6973
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_DTO.TaskInfo
{
    public class AGCTaskDto
    {
        public int TaskNum { get; set; }
        public string Roadway { get; set; }
        public string TaskType { get; set; }
        public string TaskState { get; set; }
        public string SourceAddress { get; set; }
        public string TargetAddress { get; set; }
        public DateTime? Dispatchertime { get; set; }
    }
}