This commit is contained in:
2022-07-11 20:58:50 +00:00
parent 33b564ad63
commit 4dd2df03cf
9 changed files with 233 additions and 63 deletions

View File

@@ -0,0 +1,34 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AyaNovaQBI
{
public class WorkOrderItemTask
{
public long Id { get; set; }
public uint Concurrency { get; set; }
public int Sequence { get; set; }
public string Task { get; set; }
public WorkOrderItemTaskCompletionType Status { get; set; } = WorkOrderItemTaskCompletionType.Incomplete;
public string StatusViz { get; set; }
public long? CompletedByUserId { get; set; }
public string CompletedByUserViz { get; set; }
public DateTime? CompletedDate { get; set; }
public long WorkOrderItemId { get; set; }
}//eoc
}