using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.Op.Dtos
{
///
///
///
public class BLIssueMangeQueryExtDto
{
///
/// 台账状态标签代码
///
public string QueryTabCode { get; set; }
///
/// 主分单(M-主单,H-分单)
///
public string MHouseFlag { get; set; }
///
/// 收费状态(ALL-全部,NORECV-仅未收,RECV-仅已收)
///
public string ChargeFeeStaus { get; set; }
///
/// ETD起始时间
///
public Nullable ETDStart { get; set; }
///
/// ETD结束时间
///
public Nullable ETDEnd { get; set; }
///
/// 签入起始时间
///
public Nullable CheckInDateStart { get; set; }
///
/// 签入结束时间
///
public Nullable CheckInDateEnd { get; set; }
///
/// 签入起始时间
///
public Nullable CheckOutDateStart { get; set; }
///
/// 签入结束时间
///
public Nullable CheckOutDateEnd { get; set; }
///
/// 提单号
///
public string BlNo { get; set; }
///
/// 签单方式
///
public string IssueType { get; set; }
///
/// 状态
///
public string Status { get; set; }
///
/// 船名
///
public string Vessel { get; set; }
///
/// 航次
///
public string Voyno { get; set; }
///
/// 委托客户ID
///
public Nullable CustomerId { get; set; }
///
/// 单证ID
///
public Nullable Doc { get; set; }
///
/// 业务类型
///
public string BusinessType { get; set; }
}
}