using Myshipping.Core;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
public class QueryDjyVesselInfoInput : PageInputBase
{
///
/// 船公司
///
public string CARRIER { get; set; }
///
/// 船名
///
public string Vessel { get; set; }
///
/// 内部航次
///
public string VoynoInside { get; set; }
///
/// 航次
///
public string Voyno { get; set; }
///
/// ETD开始日期
///
public DateTime? StartETD { get; set; }
///
/// ETD截止日期
///
public DateTime? EndETD { get; set; }
}
}