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.
BookingHeChuan/Myshipping.Core/Service/DjyVesselInfo/Dto/QueryDjyVesselInfoInput.cs

47 lines
931 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Core.Service
{
public class QueryDjyVesselInfoInput : PageInputBase
{
/// <summary>
2 years ago
/// 船公司
/// </summary>
2 years ago
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>
2 years ago
/// 开始日期
2 years ago
/// </summary>
public DateTime? StartETD { get; set; }
/// <summary>
2 years ago
/// j截止日期
2 years ago
/// </summary>
public DateTime? EndETD { get; set; }
}
2 years ago
}