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.

101 lines
2.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 DS.WMS.Core.Op.Dtos
{
/// <summary>
///
/// </summary>
public class BLIssueMangeQueryExtDto
{
/// <summary>
/// 台账状态标签代码
/// </summary>
public string QueryTabCode { get; set; }
/// <summary>
/// 主分单M-主单H-分单)
/// </summary>
public string MHouseFlag { get; set; }
/// <summary>
/// 收费状态ALL-全部NORECV-仅未收RECV-仅已收)
/// </summary>
public string ChargeFeeStaus { get; set; }
/// <summary>
/// ETD起始时间
/// </summary>
public Nullable<DateTime> ETDStart { get; set; }
/// <summary>
/// ETD结束时间
/// </summary>
public Nullable<DateTime> ETDEnd { get; set; }
/// <summary>
/// 签入起始时间
/// </summary>
public Nullable<DateTime> CheckInDateStart { get; set; }
/// <summary>
/// 签入结束时间
/// </summary>
public Nullable<DateTime> CheckInDateEnd { get; set; }
/// <summary>
/// 签入起始时间
/// </summary>
public Nullable<DateTime> CheckOutDateStart { get; set; }
/// <summary>
/// 签入结束时间
/// </summary>
public Nullable<DateTime> CheckOutDateEnd { get; set; }
/// <summary>
/// 提单号
/// </summary>
public string BlNo { get; set; }
/// <summary>
/// 签单方式
/// </summary>
public string IssueType { get; set; }
/// <summary>
/// 状态
/// </summary>
public string Status { get; set; }
/// <summary>
/// 船名
/// </summary>
public string Vessel { get; set; }
/// <summary>
/// 航次
/// </summary>
public string Voyno { get; set; }
/// <summary>
/// 委托客户ID
/// </summary>
public Nullable<long> CustomerId { get; set; }
/// <summary>
/// 单证ID
/// </summary>
public Nullable<long> Doc { get; set; }
/// <summary>
/// 业务类型
/// </summary>
public string BusinessType { get; set; }
}
}