This commit is contained in:
25
server/AyaNova/models/ViewScheduleWorkOrder.cs
Normal file
25
server/AyaNova/models/ViewScheduleWorkOrder.cs
Normal 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
|
||||
|
||||
Reference in New Issue
Block a user