|
|
|
@ -9,183 +9,7 @@ namespace DS.WMS.ContainerManagement.Info.Dtos;
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 箱管_租箱租出 请求实体
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class CM_RentOneWay_DetailReq
|
|
|
|
|
public class CM_RentOneWay_DetailReq: CM_Rent_DetailBase
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 主键Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long Id { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 租箱业务id
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long Pid { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:租箱业务号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Billno { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:箱号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Cntrno { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 箱型代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string CtnCode { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:箱型
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Ctnall { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:原箱主Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long OldContainerOwnerId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:原箱主
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string OldContainerOwner { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:租箱客户Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long RentCustomerId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:租箱客户
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string RentCustomerName { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:租箱业务方向Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
public CMRentDirectEnum? RentDirectId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:租箱业务方向
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string? RentDirect => RentDirectId?.EnumDescription();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:租箱类型Id 长租1 短租0 单程2
|
|
|
|
|
/// </summary>
|
|
|
|
|
public CMRentTypeEnum? RentTypeId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:租箱业务方向
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string? RentType => RentTypeId?.EnumDescription();
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:业务状态
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string BillState { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:关联放箱单号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string CtnReleaseNo { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:租入日期
|
|
|
|
|
/// </summary>
|
|
|
|
|
public DateTime? Bsdate { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:开始计费日期
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string FeeStartDate { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:币别
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Currency { get; set; } = "USD";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:日租金
|
|
|
|
|
/// </summary>
|
|
|
|
|
public decimal? DailyRate { get; set; } = 0M;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:提箱费
|
|
|
|
|
/// </summary>
|
|
|
|
|
public decimal? PickupFee { get; set; } = 0M;
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:提箱日期
|
|
|
|
|
/// </summary>
|
|
|
|
|
public DateTime? PickupDate { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:还箱费
|
|
|
|
|
/// </summary>
|
|
|
|
|
public decimal? DropoffFee { get; set; } = 0M;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:还箱日期
|
|
|
|
|
/// </summary>
|
|
|
|
|
public DateTime? DropoffDate { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:起租地点代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string RentalPortid { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:起租地点五字码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string RentalPortCode { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:起租地点
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
public string RentalPort { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:提箱港口代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long? PickupPortid { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:提箱港口五字码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string PickupPortCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:提箱港口
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string PickupPort { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:还箱港口代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long? DropoffPortid { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:还箱港口五字码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string DropoffPortCode { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:还箱港口
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string DropoffPort { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:业务编号/提单号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Mblno { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:船名航次
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string? VesselVoyno { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 在 租箱租入_退租 或 租箱租出_退租 中 记录对应的租入或租出业务Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long RentDetailId { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|