using DS.WMS.Core.Op.Entity;
namespace DS.WMS.Core.Op.Dtos
{
///
/// 合约管理
///
public class BookingContractNoManageDto
{
///
/// 主键
///
/// 358942162968645
public long Id { get; set; }
///
/// 合约号编号
///
public string ContractNo { get; set; }
///
/// 合约号名称
///
public string ContractName { get; set; }
///
/// 合约号备注
///
public string ContractNote { get; set; }
///
/// 目的港代码
///
public string PodCode { get; set; }
///
/// 目的港主键
///
public string PodId { get; set; }
///
/// 目的港名称
///
public string PodName { get; set; }
///
/// 船公司主键
///
public Nullable CarrierId { get; set; }
///
/// 船公司代码
///
public string CarrierCode { get; set; }
///
/// 船公司
///
public string Carrier { get; set; }
///
/// 合约方公司全称
///
public string ContractPartyName { get; set; }
///
/// 合约方公司代码
///
public string ContractPartyCode { get; set; }
///
/// 合约方联系人
///
public string ContractLinkName { get; set; }
///
/// 合约方联系邮件
///
public string ContractLinkEmail { get; set; }
///
/// 是否为本公司合约价格 1-是,0-否
///
public bool IsOurOwnPrice { get; set; } = true;
///
/// 关联的航线列表
///
public List? LaneList { get; set; }
}
///
/// 合约管理台账查询Dto
///
public class BookingContractNoManageQueryDto
{
///
/// 航线主键
///
public long? LaneId { get; set; }
///
/// 航线代码
///
public string? LaneCode { get; set; }
}
}