You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
958 B
C#
48 lines
958 B
C#
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
|
|
{
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 船公司
|
|
/// </summary>
|
|
public string CARRIER { get; set; }
|
|
/// <summary>
|
|
/// 船名
|
|
/// </summary>
|
|
public string Vessel { get; set; }
|
|
/// <summary>
|
|
/// 内部航次
|
|
/// </summary>
|
|
public string VoynoInside { get; set; }
|
|
|
|
/// <summary>
|
|
/// 航次
|
|
/// </summary>
|
|
public string Voyno { get; set; }
|
|
|
|
/// <summary>
|
|
/// ETD开始日期
|
|
/// </summary>
|
|
public DateTime? StartETD { get; set; }
|
|
|
|
/// <summary>
|
|
/// ETD截止日期
|
|
/// </summary>
|
|
public DateTime? EndETD { get; set; }
|
|
|
|
}
|
|
|
|
|
|
}
|