24 lines
1.0 KiB
C#
24 lines
1.0 KiB
C#
namespace DongfangHydro.Dashboard.Api.Domain;
|
|
|
|
public sealed class MaterialQuota
|
|
{
|
|
public Guid Id { get; set; }
|
|
public Guid OrderId { get; set; }
|
|
public string Category { get; set; } = string.Empty;
|
|
public string SourceSequence { get; set; } = string.Empty;
|
|
public string MaterialCode { get; set; } = string.Empty;
|
|
public string MaterialName { get; set; } = string.Empty;
|
|
public string Specification { get; set; } = string.Empty;
|
|
public string Unit { get; set; } = string.Empty;
|
|
public decimal? Quantity { get; set; }
|
|
public decimal? NetWeight { get; set; }
|
|
public decimal? ConsumptionQuota { get; set; }
|
|
public string QuantityText { get; set; } = string.Empty;
|
|
public string NetWeightText { get; set; } = string.Empty;
|
|
public string ConsumptionQuotaText { get; set; } = string.Empty;
|
|
public string Brand { get; set; } = string.Empty;
|
|
public string Remark { get; set; } = string.Empty;
|
|
public string SourceSheet { get; set; } = "材料定额";
|
|
public int SourceRow { get; set; }
|
|
}
|