1
huanghongfeng
2025-10-22 8d558cb173873004cd8a0d6c12f37865f03d7a4f
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; }
    }
}