1
z8018
2025-04-05 b5dd6918e906b194f99b88d11ce343f457af19c3
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; }
    }
}