看板移动端任务单列表接口增加字段 任务单开始保存实际开始时间 提报后记录预计结束时间

This commit is contained in:
2023-10-17 18:45:18 +08:00
parent f6a92e607d
commit 8166acf483
4 changed files with 81 additions and 8 deletions

View File

@@ -92,5 +92,30 @@ namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
public string mold_code { get; set; }
public string mold_name { get; set; }
public DateTime? create_time { get; set; }
/// <summary>
/// 成型周期
/// </summary>
public decimal? moulding_cycle { get; set; }
/// <summary>
/// 模穴数
/// </summary>
public int? mold_cavity { get; set; }
/// <summary>
/// 标准工时
/// </summary>
public string? standard_time { get; set; }
/// <summary>
/// 实际开工日期
/// </summary>
public string? act_start_date { get; set; }
/// <summary>
/// 预计结束时间
/// </summary>
public string? plan_end_date { get; set; }
}
}