using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application.Service.DataSync.Dto
{
public class DjyVesselDto
{
public string Vessel { get; set; }
public string Voyno { get; set; }
public string CARRIER { get; set; }
public string CARRIERID { get; set; }
public DateTime? ETD { get; set; }
public DateTime? ETA { get; set; }
public DateTime? ATD { get; set; }
public DateTime? ATA { get; set; }
}
public class DjyVesselGHDto
{
public string Vessel { get; set; }
public string Voyno { get; set; }
public string CARRIER { get; set; }
public string CARRIERID { get; set; }
///
/// 预计到港日期(目的港)
///
public DateTime? ETA { get; set; }
///
/// 中转预抵
///
public DateTime? MiddleETA { get; set; }
///
/// 中转预计离港
///
public DateTime? MiddleETD { get; set; }
///
/// 中转实际到港
///
public DateTime? MiddleATA { get; set; }
///
/// 中转实际离港
///
public DateTime? MiddleATD { get; set; }
///
/// 实际到港(目的港)
///
public DateTime? ATA { get; set; }
}
public class DjyVesselExceptDto
{
public string Vessel { get; set; }
public string Voyno { get; set; }
public string CARRIER { get; set; }
public string CARRIERID { get; set; }
public string Message { get; set; }
}
}