生产工单 任务单 提报表 相关数量的类型 int 改成 decimal

This commit is contained in:
2024-09-20 10:20:48 +08:00
parent 28742d05d0
commit ab4eddc079
24 changed files with 85 additions and 73 deletions

View File

@@ -42,27 +42,27 @@ public partial class PrdMo : BaseEntity<string>
/// <summary>
/// 计划生产数量
/// </summary>
public int? plan_qty { get; set; }
public decimal? plan_qty { get; set; }
/// <summary>
/// 已投入数量
/// </summary>
public int? input_qty { get; set; }
public decimal? input_qty { get; set; }
/// <summary>
/// 已完工数量
/// </summary>
public int? complete_qty { get; set; }
public decimal? complete_qty { get; set; }
/// <summary>
/// 已报工数量
/// </summary>
public int? reported_work_qty { get; set; }
public decimal? reported_work_qty { get; set; }
/// <summary>
/// 报废数量
/// </summary>
public int? scrap_qty { get; set; }
public decimal? scrap_qty { get; set; }
/// <summary>
/// 计划开始时间
@@ -227,7 +227,7 @@ public partial class PrdMo : BaseEntity<string>
/// <summary>
/// 已排产数量
/// </summary>
public int? scheduled_qty { get; set; }
public decimal? scheduled_qty { get; set; }
/// <summary>
/// 父工单id
/// </summary>