核算单位改为可空

usertest
嵇文龙 2 months ago
parent c30289dc28
commit 467212915f

@ -513,7 +513,7 @@ namespace DS.WMS.Core.Fee.Dtos
/// <summary>
/// 核算单位Id
/// </summary>
public long SaleOrgId { get; set; }
public long? SaleOrgId { get; set; }
/// <summary>
/// 核算单位

@ -177,7 +177,7 @@ namespace DS.WMS.Core.Fee.Entity
/// <summary>
/// 审核人Id
/// </summary>
[SugarColumn(ColumnDescription = "审核人Id")]
[SugarColumn(ColumnDescription = "审核人Id", IsNullable = true)]
public long? AuditBy { get; set; }
/// <summary>
@ -196,26 +196,31 @@ namespace DS.WMS.Core.Fee.Entity
/// </summary>
[SugarColumn(ColumnDescription = "是否公开费用", DefaultValue = "1")]
public bool IsOpen { get; set; } = true;
/// <summary>
/// 对帐编号
/// </summary>
[SugarColumn(ColumnDescription = "对帐编号", IsNullable = true, Length = 50)]
public string DebitNo { get; set; }
/// <summary>
/// 是否对帐
/// </summary>
[SugarColumn(ColumnDescription = "是否对帐", DefaultValue = "0")]
public bool IsDebit { get; set; } = false;
/// <summary>
/// 是否垫付费用
/// </summary>
[SugarColumn(ColumnDescription = "是否垫付费用", DefaultValue = "0")]
public bool IsAdvancedPay { get; set; } = false;
/// <summary>
/// 是否禁开发票
/// </summary>
[SugarColumn(ColumnDescription = "是否禁开发票", DefaultValue = "0")]
public bool IsInvoice { get; set; } = false;
/// <summary>
/// 是否销售订舱
/// </summary>
@ -353,13 +358,14 @@ namespace DS.WMS.Core.Fee.Entity
/// 核算单位
/// </summary>
[SugarColumn(ColumnDescription = "核算单位", IsNullable = true, Length = 50)]
public string SaleOrg { get; set; }
public string? SaleOrg { get; set; }
/// <summary>
/// 核算单位Id
/// </summary>
[SugarColumn(ColumnDescription = "核算单位Id")]
public long SaleOrgId { get; set; }
[SugarColumn(ColumnDescription = "核算单位Id", IsNullable = true)]
public long? SaleOrgId { get; set; }
/// <summary>
/// 发票自助连接
/// </summary>
@ -369,8 +375,9 @@ namespace DS.WMS.Core.Fee.Entity
/// <summary>
/// 提交日期
/// </summary>
[SugarColumn(ColumnDescription = "提交日期")]
[SugarColumn(ColumnDescription = "提交日期", IsNullable = true)]
public DateTime? SubmitDate { get; set; }
/// <summary>
/// 提交人
/// </summary>

Loading…
Cancel
Save