This commit is contained in:
2024-08-14 11:53:10 +08:00
parent 40f8e9bb2f
commit 5f5f9db1ff
5 changed files with 27 additions and 1 deletions

View File

@@ -85,5 +85,25 @@ public partial class ToolMoldMaintainTask : BaseEntity<string>
/// 工时(小时)
/// </summary>
public decimal cost_work_time { get; set; }
/// <summary>
/// 是否复核
/// </summary>
public int is_repeat { get; set; }
/// <summary>
/// 复核人
/// </summary>
public string repeater { get; set; }
/// <summary>
/// 是否报废
/// </summary>
public int is_scrap { get; set; }
/// <summary>
/// 报废穴数
/// </summary>
public int scrap_qty { get; set; }
}