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.

92 lines
2.3 KiB
C#

4 months ago
using DS.Module.Core;
3 months ago
using DS.Module.Core.Enums;
4 months ago
using DS.WMS.Core.Op.Entity;
3 months ago
using Masuit.Tools.Systems;
4 months ago
using SqlSugar;
3 months ago
using System.ComponentModel;
4 months ago
namespace DS.WMS.ContainerManagement.Info.Dtos;
/// <summary>
/// 箱管_租箱租出 返回实体
/// </summary>
3 months ago
public class CM_RentOutRes: CM_Rent_HeadBase
4 months ago
{
3 months ago
/// <summary>
/// Desc:租箱业务号
/// </summary>
public string Billno { get; set; }
/// <summary>
/// Desc:租箱客户Id
/// </summary>
public long? RentCustomerId { get; set; }
/// <summary>
/// Desc:租箱客户
/// </summary>
public string RentCustomerName { get; set; }
4 months ago
/// <summary>
/// 主键Id
/// </summary>
3 months ago
//public long Id { get; set; }
4 months ago
/// <summary>
/// Desc:租箱业务号
/// </summary>
3 months ago
//public string Billno { get; set; }
4 months ago
3 months ago
//public BusinessType BusinessType { get; set; } = DS.WMS.Core.Op.Entity.BusinessType.CM_RentOut;
/// <summary>
/// Desc:租箱业务id
/// </summary>
//public CMRentDirectEnum? RentDirectId { get; set; }
4 months ago
/// <summary>
4 months ago
/// Desc:租箱业务
4 months ago
/// </summary>
3 months ago
//public string? RentDirect => RentDirectId?.GetDescription();
4 months ago
/// <summary>
/// Desc:租箱类型 长租短租单程
/// </summary>
3 months ago
//public CMRentTypeEnum? RentTypeId { get; set; }
4 months ago
/// <summary>
3 months ago
/// Desc:租箱类型 长租短租单程
4 months ago
/// </summary>
3 months ago
//public string RentType { get; set; }
//public string RentType => RentTypeId?.GetDescription();
4 months ago
/// <summary>
3 months ago
/// Desc:业务状态
4 months ago
/// </summary>
3 months ago
//public string BillState { get; set; }
4 months ago
/// <summary>
/// Desc:船名航次
4 months ago
/// </summary>
3 months ago
//public string? VesselVoyno { get; set; }
4 months ago
/// <summary>
/// Desc:业务日期
/// </summary>
3 months ago
//public DateTime? Bsdate { get; set; }
4 months ago
/// <summary>
/// Desc:会计期间
/// </summary>
3 months ago
//public string Accdate { get; set; }
4 months ago
/// <summary>
/// Desc:是否业务锁定
/// </summary>
3 months ago
//public bool? IsBusinessLocking { get; set; } = false;
4 months ago
/// <summary>
/// Desc:是否费用锁定
/// </summary>
3 months ago
//public bool? IsFeeLocking { get; set; } = false;
4 months ago
/// <summary>
/// Desc:备注
/// </summary>
3 months ago
//public string Remark { get; set; }
4 months ago
}