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; }
|
}
|
}
|