40 lines
1.2 KiB
C#
40 lines
1.2 KiB
C#
namespace Tnb.BasicData.Entities.Dto
|
|
{
|
|
public class MbomMaterialOutput
|
|
{
|
|
public string id { get; set; }
|
|
public string code { get; set; }
|
|
public string name { get; set; }
|
|
/// <summary>
|
|
/// 物料规格
|
|
/// </summary>
|
|
public string? material_specification { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物料型号(箱号)
|
|
/// </summary>
|
|
public string? material_standard { get; set; }
|
|
public string unit_id { get; set; } = string.Empty;
|
|
public string category_id { get; set; } = string.Empty;
|
|
public List<MbomMaterialDetailOutput> tablefield183 { get; set; } = new List<MbomMaterialDetailOutput>();
|
|
|
|
}
|
|
|
|
public class MbomMaterialDetailOutput
|
|
{
|
|
/// <summary>
|
|
/// 主单位数量
|
|
/// </summary>
|
|
public string? number_of_primary_unit { get; set; }
|
|
|
|
/// <summary>
|
|
/// 辅助单位数量
|
|
/// </summary>
|
|
public string? number_of_auxiliary_unit { get; set; }
|
|
|
|
/// <summary>
|
|
/// 辅助单位
|
|
/// </summary>
|
|
public string auxiliary_unit_id { get; set; } = string.Empty;
|
|
}
|
|
} |