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.

60 lines
1.4 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
/// <summary>
/// 批量BC引入订舱检索
/// </summary>
public class BookingOrderBCQuery
{
/// <summary>
/// 开船开始日期
/// </summary>
public Nullable<DateTime> beginETD { get; set; }
/// <summary>
/// 开船结束日期
/// </summary>
public Nullable<DateTime> endETD { get; set; }
/// <summary>
/// 创建开始日期
/// </summary>
public Nullable<DateTime> beginCreated { get; set; }
/// <summary>
/// 创建结束日期
/// </summary>
public Nullable<DateTime> endCreated { get; set; }
/// <summary>
/// 主提单号
/// </summary>
public string mblNo { get; set; }
/// <summary>
/// 订舱编号
/// </summary>
public string custNo { get; set; }
/// <summary>
/// 船名
/// </summary>
public string vessel { get; set; }
/// <summary>
/// 航次号
/// </summary>
public string voyno { get; set; }
/// <summary>
/// 最大返回行数默认100
/// </summary>
public int topNum { get; set; } = 100;
}
}