huangxiaoqiang
2025-06-12 c54e0666bdd34fbe133fe521bf9d46dd6c0fe53e
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; }
    }
}