This commit is contained in:
2021-10-01 18:09:00 +00:00
parent 99b62d61fa
commit ad74143630
6 changed files with 135 additions and 24 deletions

View File

@@ -0,0 +1,25 @@
using System;
namespace AyaNova.Models
{
//Note this is how to define a View backed model with no key (id)
[Microsoft.EntityFrameworkCore.Keyless]
public class ViewScheduleWorkOrder
{
public long WoItemSchedUserId { get; set; }
public long SchedUserId { get; set; }
public DateTime? StartDate { get; set; }
public DateTime? StopDate { get; set; }
public long Serial { get; set; }
public string CustomerName { get; set; }
public string WorkOrderStatusColor { get; set; }
public bool? WorkOrderStatusCompleted { get; set; }
public bool? WorkOrderStatusLocked { get; set; }
public string WorkOrderItemStatusColor { get; set; }
public string WorkOrderItemPriorityColor { get; set; }
}//eoc
}//eons