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.Application/Service/BookingOrder/Dto/QueryBookingDeliveryRecordD...

182 lines
4.5 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
{
public class QueryBookingDeliveryRecordDto: QueryTaskManageBaseDto
{
/// <summary>
/// 创建日期起始
/// </summary>
/// <example></example>
public string CreateBegin { get; set; }
/// <summary>
/// 创建日期结束
/// </summary>
/// <example></example>
public string CreateEnd { get; set; }
/// <summary>
/// 更新日期起始
/// </summary>
/// <example></example>
public string UpdateBegin { get; set; }
/// <summary>
/// 更新日期结束
/// </summary>
/// <example></example>
public string UpdateEnd { get; set; }
/// <summary>
/// ETD日期起始
/// </summary>
/// <example></example>
public string ETDBegin { get; set; }
/// <summary>
/// ETD日期结束
/// </summary>
/// <example></example>
public string ETDEnd { get; set; }
/// <summary>
/// ETA日期起始
/// </summary>
/// <example></example>
public string ETABegin { get; set; }
/// <summary>
/// ETA日期结束
/// </summary>
/// <example></example>
public string ETAEnd { get; set; }
/// <summary>
/// 定时日期起始
/// </summary>
/// <example></example>
public string JOBBegin { get; set; }
/// <summary>
/// 定时日期结束
/// </summary>
/// <example></example>
public string JOBEnd { get; set; }
/// <summary>
/// 预计离港日期起始
/// </summary>
/// <example></example>
public string EDepartureBegin { get; set; }
/// <summary>
/// 预计离港日期结束
/// </summary>
/// <example></example>
public string EDepartureEnd { get; set; }
/// <summary>
/// 合约号
/// </summary>
public string PriceReference { get; set; }
/// <summary>
/// 订舱公司名称(英文全称)
/// </summary>
public string BookedByCompanyName { get; set; }
/// <summary>
/// 订舱公司代码
/// </summary>
public string BookedByCompanyPartyCode { get; set; }
/// <summary>
/// 船名
/// </summary>
public string Vessel { get; set; }
/// <summary>
/// 航次号
/// </summary>
public string Voyno { get; set; }
/// <summary>
/// 是否冷冻处理 1-是0-否
/// </summary>
public bool isReefer { get; set; }
/// <summary>
/// 货物代码类型
/// </summary>
public string CommodityCodeType { get; set; }
/// <summary>
/// 当前订舱公司是否也是合约方 true-标识合约信息跟订舱公司一致false-标识有单独的合约方
/// </summary>
public bool IsbookingPartOwnPrice { get; set; }
/// <summary>
/// 价格所有者公司名称
/// </summary>
public string PriceOwnerCompanyName { get; set; }
/// <summary>
/// 价格所有者代码
/// </summary>
public string PriceOwnerCompanyPartyCode { get; set; }
/// <summary>
/// 始发地
/// </summary>
public string PlaceReceiptCity { get; set; }
/// <summary>
/// 目的地
/// </summary>
public string PlaceDeliveryCity { get; set; }
/// <summary>
/// 订舱号
/// </summary>
public string BookingReference { get; set; }
/// <summary>
/// 订舱人
/// </summary>
public string BookingCreator { get; set; }
/// <summary>
/// 预估金额开始
/// </summary>
public string TotalAmountStart { get; set; }
/// <summary>
/// 预估金额结束
/// </summary>
public string TotalAmountEnd { get; set; }
/// <summary>
/// 订舱类别
/// </summary>
public string BookingChannelType { get; set; }
/// <summary>
/// 预估币别
/// </summary>
public string TotalCurrency { get; set; }
/// <summary>
/// 船公司
/// </summary>
public string Carrier { get; set; }
}
}