生产管理模块代码调整

This commit is contained in:
DEVICE8\12494
2023-05-12 22:58:16 +08:00
parent 85e7338669
commit 77bb079eee
31 changed files with 2315 additions and 1412 deletions

View File

@@ -10,12 +10,32 @@ namespace Tnb.ProductionMgr.Entities.Dto
/// <summary>
/// 模具列表输出参数
/// </summary>
public class MoldListOutput : Molds
public class MoldListOutput
{
/// <summary>
/// 产品 名称
/// 模具名称
/// </summary>
public string item_name { get; set; }
public string mold_name { get; set; }
/// <summary>
/// 物料名称
/// </summary>
public string material_name { get; set; }
/// <summary>
/// 物料编号
/// </summary>
public string material_code { get; set; }
/// <summary>
/// 模具编号
/// </summary>
public string mold_code { get; set; }
/// <summary>
/// 模具型号
/// </summary>
public string mold_type_code { get; set; }
/// <summary>
/// 型腔数
/// </summary>
public int? cavity_qty { get; set; }
public string mold_id { get; set;}
}
}