目录调整

This commit is contained in:
2023-05-05 19:44:24 +08:00
parent 40bca59440
commit 7a183ccd94
54 changed files with 22 additions and 29 deletions

View File

@@ -0,0 +1,30 @@
namespace Tnb.BasicData.Entities.Dto
{
/// <summary>
/// 物料清单列表输出类
/// </summary>
public class EbomListOutput
{
public string id { get; set; }
/// <summary>
/// 物料编码-物料名称
/// </summary>
public string material_id { get; set; }
/// <summary>
/// 物料id
/// </summary>
public string material_id_id { get; set; }
public string status { get; set; }
public string descrip { get; set; }
public string unit_id { get; set; }
public string version { get; set; }
/// <summary>
/// 工艺路线名称
/// </summary>
public string route_id { get; set; }
/// <summary>
/// 工艺路线id
/// </summary>
public string route_id_id { get; set; }
}
}

View File

@@ -0,0 +1,84 @@
namespace Tnb.BasicData.Entities.Dto
{
public class EbomTreeOutput
{
/// <summary>
/// 物料名称
/// </summary>
public string material_id { get; set; }
/// <summary>
/// 规格描述
/// </summary>
public string material_id_descrip { get; set; }
/// <summary>
/// 物料id
/// </summary>
public string material_id_id { get; set; }
/// <summary>
/// 最小包装
/// </summary>
public decimal? material_id_minpacking { get; set; }
/// <summary>
/// 备注
/// </summary>
public string material_id_remark { get; set; }
/// <summary>
/// 单位
/// </summary>
public string material_id_unit_id { get; set; }
/// <summary>
/// 是否有下级
/// </summary>
public bool hasChildren { get; set; }
/// <summary>
/// Desc:投料管控
/// Default:NULL::character varying
/// Nullable:True
/// </summary>
public string feeding_control {get;set;}
/// <summary>
/// Desc:损耗率
/// Default:NULL::character varying
/// Nullable:True
/// </summary>
public string loss_rate {get;set;}
/// <summary>
/// Desc:数量
/// Default:NULL::character varying
/// Nullable:True
/// </summary>
public string quantity {get;set;}
/// <summary>
/// Desc:需要称量
/// Default:NULL::character varying
/// Nullable:True
/// </summary>
public string require_weight {get;set;}
/// <summary>
/// Desc:替代物料
/// Default:NULL::character varying
/// Nullable:True
/// </summary>
public string substitute_material_id {get;set;}
/// <summary>
/// Desc:工艺路线
/// Default:NULL::character varying
/// Nullable:True
/// </summary>
public string route_name {get;set;}
/// <summary>
/// Desc:版本号
/// Default:NULL::character varying
/// Nullable:True
/// </summary>
public string version {get;set;}
}
}

View File

@@ -0,0 +1,17 @@
namespace Tnb.BasicData.Entities.Dto
{
public class EbomTreeQueryInput
{
/// <summary>
/// 物料清单id
/// </summary>
public string ebomId { get; set; }
/// <summary>
/// 物料id
/// </summary>
public string materialId { get; set; }
}
}