生产管理模块代码调整

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

@@ -16,7 +16,11 @@ namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
/// Default:
/// Nullable:True
/// </summary>
public string icmo_code { get; set; }
//public string mo_task_code { get; set; }
/// <summary>
/// 生产任务单Id
/// </summary>
public string mo_task_id { get; set; }
/// <summary>
/// Desc:报废数量
/// Default:
@@ -39,14 +43,35 @@ namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
public class SelfTestScrappedInputItem
{
public string defective_category { get; set; }
/// <summary>
/// 次品分类Id
/// </summary>
public string category_id { get; set; }
/// <summary>
/// Desc:分类数量
/// Default:
/// Nullable:True
/// </summary>
public int? category_qty { get; set; }
public List<SelfTestScrappedItem> items { get; set; }
//public int? category_qty { get; set; }
public List<defectItem> items { get; set; }
}
public class defectItem
{
/// <summary>
/// Desc:次品项
/// Default:
/// Nullable:True
/// </summary>
public string defective_item { get; set; }
/// <summary>
/// Desc:次品项数量
/// Default:
/// Nullable:True
/// </summary>
public int defective_item_qty { get; set; }
}
}