This commit is contained in:
@@ -8,15 +8,12 @@ namespace AyaNova.Models
|
|||||||
{
|
{
|
||||||
public class WorkOrderItemUnit : ICoreBizObjectModel
|
public class WorkOrderItemUnit : ICoreBizObjectModel
|
||||||
{
|
{
|
||||||
public WorkOrderItemUnit()
|
|
||||||
{
|
|
||||||
Tags = new List<string>();
|
|
||||||
}
|
|
||||||
public long Id { get; set; }
|
public long Id { get; set; }
|
||||||
public uint Concurrency { get; set; }
|
public uint Concurrency { get; set; }
|
||||||
public string Notes { get; set; }
|
public string Notes { get; set; }
|
||||||
public string CustomFields { get; set; }
|
//after much to and fro just code this as planned but definitely consider custom fields adn tags for this and possibly all other grandchildren as well?
|
||||||
public List<string> Tags { get; set; }
|
|
||||||
[Required]
|
[Required]
|
||||||
public long WorkOrderItemId { get; set; }
|
public long WorkOrderItemId { get; set; }
|
||||||
[JsonIgnore]
|
[JsonIgnore]
|
||||||
@@ -27,3 +24,33 @@ namespace AyaNova.Models
|
|||||||
|
|
||||||
}//eoc
|
}//eoc
|
||||||
}//eons
|
}//eons
|
||||||
|
/*
|
||||||
|
New object that didnt' exist in v7 except as a singleton referenced inside woitem:
|
||||||
|
|
||||||
|
CREATE TABLE [dbo].[AWORKORDERITEM](
|
||||||
|
[AID] [uniqueidentifier] NOT NULL,
|
||||||
|
[AWORKORDERID] [uniqueidentifier] NOT NULL,
|
||||||
|
[ACREATOR] [uniqueidentifier] NOT NULL,
|
||||||
|
[AMODIFIER] [uniqueidentifier] NOT NULL,
|
||||||
|
[ACREATED] [datetime] NOT NULL,
|
||||||
|
[AMODIFIED] [datetime] NOT NULL,
|
||||||
|
[ATECHNOTES] [ntext] NULL,
|
||||||
|
[AWORKORDERSTATUSID] [uniqueidentifier] NULL,
|
||||||
|
[APRIORITYID] [uniqueidentifier] NULL,
|
||||||
|
[AREQUESTDATE] [datetime] NULL,
|
||||||
|
[ASUMMARY] [nvarchar](255) NULL,
|
||||||
|
[ATYPEID] [uniqueidentifier] NULL,
|
||||||
|
[AUNITID] [uniqueidentifier] NULL,//<--------UNIT
|
||||||
|
[AWORKORDERITEMUNITSERVICETYPEID] [uniqueidentifier] NULL,//<--------UNIT
|
||||||
|
[AWARRANTYSERVICE] [bit] NOT NULL,
|
||||||
|
[ACUSTOM1] [ntext] NULL,
|
||||||
|
[ACUSTOM2] [ntext] NULL,
|
||||||
|
[ACUSTOM3] [ntext] NULL,
|
||||||
|
[ACUSTOM4] [ntext] NULL,
|
||||||
|
[ACUSTOM5] [ntext] NULL,
|
||||||
|
[ACUSTOM6] [ntext] NULL,
|
||||||
|
[ACUSTOM7] [ntext] NULL,
|
||||||
|
[ACUSTOM8] [ntext] NULL,
|
||||||
|
[ACUSTOM9] [ntext] NULL,
|
||||||
|
[ACUSTOM0] [ntext] NULL,
|
||||||
|
*/
|
||||||
Reference in New Issue
Block a user