feat: initialize manufacturing progress dashboard
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user