立即调用erp接口 任务单批次生成修改

This commit is contained in:
2024-09-23 15:07:00 +08:00
parent 1c04f0449f
commit 1dc51107f5
16 changed files with 452 additions and 346 deletions

View File

@@ -109,6 +109,11 @@ public partial class PrdMoTask : BaseEntity<string>
/// </summary>
public DateTime? plan_end_date { get; set; }
/// <summary>
/// 第一次开工日期
/// </summary>
public DateTime? first_start_date { get; set; }
/// <summary>
/// 实际开工日期
/// </summary>
@@ -245,4 +250,14 @@ public partial class PrdMoTask : BaseEntity<string>
/// 定时任务key
/// </summary>
public string timer_key { get; set; }
/// <summary>
/// 按时间更换批次次数
/// </summary>
public int change_batch_count_by_day { get; set; } = -1;
/// <summary>
/// 按产量更换批次次数
/// </summary>
public int change_batch_count_by_qty { get; set; } = -1;
}