This commit is contained in:
2024-08-22 14:08:16 +08:00
parent 4ce0a58715
commit 27e67dadf3
29 changed files with 758 additions and 184 deletions

View File

@@ -207,8 +207,38 @@ public partial class PrdMoTask : BaseEntity<string>
/// </summary>
public string? pause_reason { get; set; }
/// <summary>
/// 分配员工id
/// 分配员工id 废弃
/// </summary>
public string worker_id { get; set; }
/// <summary>
/// 是否已末检
/// </summary>
public int has_last_check { get; set; }
/// <summary>
/// 排班类型
/// </summary>
public string scheduling_class_type { get; set; }
/// <summary>
/// 白班人员id/白班前人员id
/// </summary>
public string dayshift_worker_id { get; set; }
/// <summary>
/// 夜班人员id/夜班前人员id
/// </summary>
public string nightshift_worker_id { get; set; }
/// <summary>
/// 白班后人员id
/// </summary>
public string dayshiftafter_worker_id { get; set; }
/// <summary>
/// 夜班后人员id
/// </summary>
public string nightshiftafter_worker_id { get; set; }
}