This commit is contained in:
2021-09-14 20:11:39 +00:00
parent f5d22b8a46
commit e1dda2601d
4 changed files with 49 additions and 29 deletions

View File

@@ -0,0 +1,22 @@
using System;
namespace AyaNova.Models
{
//Note this is how to define a View backed model with no key (id)
[Microsoft.EntityFrameworkCore.Keyless]
public class ViewSchedulePersonalWorkOrder
{
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 string WorkOrderItemStatusColor { get; set; }
public string WorkOrderItemPriorityColor { get; set; }
}//eoc
}//eons