|
|
|
using DS.Module.Core;
|
|
|
|
using DS.Module.Core.Data;
|
|
|
|
using SqlSugar;
|
|
|
|
|
|
|
|
namespace DS.WMS.ContainerManagement.Info.Entity;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 箱管_租箱租入
|
|
|
|
/// </summary>
|
|
|
|
[SqlSugar.SugarTable("CM_RentIn", "箱管_租箱租入")]
|
|
|
|
public class CM_RentIn : BaseOrgModel<long>
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Desc:租箱业务号
|
|
|
|
/// </summary>
|
|
|
|
[SugarColumn(ColumnDescription = "租箱业务号", IsNullable = false, Length = 20)]
|
|
|
|
public string Billno { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Desc:租箱业务
|
|
|
|
/// </summary>
|
|
|
|
[SugarColumn(ColumnDescription = "租箱业务", IsNullable = false, Length = 20)]
|
|
|
|
public string RentDirect { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Desc:租箱类型 长租短租单程
|
|
|
|
/// </summary>
|
|
|
|
[SugarColumn(ColumnDescription = "租箱类型", IsNullable = true, Length = 20)]
|
|
|
|
public string RentType { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Desc:业务状态
|
|
|
|
/// </summary>
|
|
|
|
[SugarColumn(ColumnDescription = "业务状态", IsNullable = true, Length = 20)]
|
|
|
|
public string BillState { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Desc:原箱主Id
|
|
|
|
/// </summary>
|
|
|
|
[SqlSugar.SugarColumn(ColumnDescription = "原箱主Id", IsNullable = true, DefaultValue = "0")]
|
|
|
|
public long? OldContainerOwnerId { get; set; }
|
|
|
|
/// <summary>
|
|
|
|
/// Desc:原箱主
|
|
|
|
/// </summary>
|
|
|
|
[SugarColumn(ColumnDescription = "原箱主", IsNullable = true, Length = 50)]
|
|
|
|
public string OldContainerOwner { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Desc:业务日期
|
|
|
|
/// </summary>
|
|
|
|
[SugarColumn(ColumnDescription = "业务日期", IsNullable = true)]
|
|
|
|
public DateTime? Bsdate { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Desc:会计期间
|
|
|
|
/// </summary>
|
|
|
|
[SugarColumn(ColumnDescription = "会计期间", IsNullable = true, Length = 7)]
|
|
|
|
public string Accdate { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Desc:是否业务锁定
|
|
|
|
/// </summary>
|
|
|
|
[SugarColumn(ColumnDescription = "是否业务锁定", IsNullable = false, DefaultValue = "0")]
|
|
|
|
public bool? IsBusinessLocking { get; set; } = false;
|
|
|
|
/// <summary>
|
|
|
|
/// Desc:是否费用锁定
|
|
|
|
/// </summary>
|
|
|
|
[SugarColumn(ColumnDescription = "是否费用锁定", IsNullable = false, DefaultValue = "0")]
|
|
|
|
public bool? IsFeeLocking { get; set; } = false;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Desc:备注
|
|
|
|
/// </summary>
|
|
|
|
[SugarColumn(ColumnDescription = "备注", IsNullable = true, Length = 500)]
|
|
|
|
public string Remark { get; set; }
|
|
|
|
}
|
|
|
|
|