完善采购订单备注

This commit is contained in:
橙子
2023-01-08 16:58:53 +08:00
parent 36c113398d
commit 8077450be0
6 changed files with 20 additions and 2 deletions

View File

@@ -16,6 +16,7 @@ namespace Yi.Framework.DtoModel.ERP.Purchase
public long TotalMoney { get; set; }
public long PaidMoney { get; set; }
public string? Remarks { get; set; }
public string SupplierName { get; set; } = string.Empty;
public PurchaseStateEnum PurchaseState { get; set; }

View File

@@ -16,6 +16,8 @@ namespace Yi.Framework.DtoModel.ERP.Purchase
public DateTime? NeedTime { get; set; }
public string Buyer { get; set; } = string.Empty;
public string? Remarks { get; set; }
public long SupplierId { get; set; }
public List<PurchaseDetailsCreateUpdateInput>? PurchaseDetails { get; set; }

View File

@@ -16,6 +16,8 @@ namespace Yi.Framework.DtoModel.ERP.Purchase
public string? Buyer { get; set; }
public long TotalMoney { get; set; }
public long PaidMoney { get; set; }
public string? Remarks { get; set; }
public PurchaseStateEnum PurchaseState { get; set; }
}
}

View File

@@ -57,6 +57,11 @@ namespace Yi.Framework.Model.ERP.Entitys
/// </summary>
public float PaidMoney { get; set; }
/// <summary>
/// 备注
/// </summary>
public string? Remarks { get; set; }
/// <summary>
/// 采购状态
/// </summary>