Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

regenerate scaffold. #4165

Merged
merged 2 commits into from
Jul 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions source/backend/entities/ef/PimsDispositionFileProperty.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,6 @@ public partial class PimsDispositionFileProperty
[StringLength(500)]
public string PropertyName { get; set; }

/// <summary>
/// Geospatial location (pin) of property
/// </summary>
[Column("LOCATION", TypeName = "geometry")]
public Geometry Location { get; set; }

/// <summary>
/// Application code is responsible for retrieving the row and then incrementing the value of the CONCURRENCY_CONTROL_NUMBER column by one prior to issuing an update. If this is done then the update will succeed, provided that the row was not updated by any
/// </summary>
Expand Down Expand Up @@ -138,6 +132,12 @@ public partial class PimsDispositionFileProperty
[StringLength(30)]
public string DbLastUpdateUserid { get; set; }

/// <summary>
/// Geospatial location (pin) of property
/// </summary>
[Column("LOCATION", TypeName = "geometry")]
public Geometry Location { get; set; }

[ForeignKey("DispositionFileId")]
[InverseProperty("PimsDispositionFileProperties")]
public virtual PimsDispositionFile DispositionFile { get; set; }
Expand Down
64 changes: 32 additions & 32 deletions source/backend/entities/ef/PimsLease.cs
Original file line number Diff line number Diff line change
Expand Up @@ -212,12 +212,6 @@ public partial class PimsLease
[Column("ORIG_EXPIRY_DATE", TypeName = "datetime")]
public DateTime? OrigExpiryDate { get; set; }

/// <summary>
/// Date that the lease was terminated.
/// </summary>
[Column("TERMINATION_DATE", TypeName = "datetime")]
public DateTime? TerminationDate { get; set; }

/// <summary>
/// Lease/licence amount
/// </summary>
Expand Down Expand Up @@ -304,32 +298,6 @@ public partial class PimsLease
[StringLength(500)]
public string TerminationReason { get; set; }

/// <summary>
/// Is there an associated public benefit with this lease? TRUE = Yes, FALSE = No, and NULL = Unknown. The default is NULL (Unknown).
/// </summary>
[Column("IS_PUBLIC_BENEFIT")]
public bool? IsPublicBenefit { get; set; }

/// <summary>
/// Is there an associated financial gain with this lease? TRUE = Yes, FALSE = No, and NULL = Unknown. The default is NULL (Unknown).
/// </summary>
[Column("IS_FINANCIAL_GAIN")]
public bool? IsFinancialGain { get; set; }

/// <summary>
/// Note associated with fee determination.
/// </summary>
[Column("FEE_DETERMINATION_NOTE")]
[StringLength(1000)]
public string FeeDeterminationNote { get; set; }

/// <summary>
/// The location in which primary arbtration of the lease occurred.
/// </summary>
[Column("PRIMARY_ARBITRATION_CITY")]
[StringLength(200)]
public string PrimaryArbitrationCity { get; set; }

/// <summary>
/// Application code is responsible for retrieving the row and then incrementing the value of the CONCURRENCY_CONTROL_NUMBER column by one prior to issuing an update. If this is done then the update will succeed, provided that the row was not updated by any o
/// </summary>
Expand Down Expand Up @@ -420,6 +388,38 @@ public partial class PimsLease
[StringLength(30)]
public string DbLastUpdateUserid { get; set; }

/// <summary>
/// Date that the lease was terminated.
/// </summary>
[Column("TERMINATION_DATE", TypeName = "datetime")]
public DateTime? TerminationDate { get; set; }

/// <summary>
/// Is there an associated public benefit with this lease? TRUE = Yes, FALSE = No, and NULL = Unknown. The default is NULL (Unknown).
/// </summary>
[Column("IS_PUBLIC_BENEFIT")]
public bool? IsPublicBenefit { get; set; }

/// <summary>
/// Is there an associated financial gain with this lease? TRUE = Yes, FALSE = No, and NULL = Unknown. The default is NULL (Unknown).
/// </summary>
[Column("IS_FINANCIAL_GAIN")]
public bool? IsFinancialGain { get; set; }

/// <summary>
/// Note associated with fee determination.
/// </summary>
[Column("FEE_DETERMINATION_NOTE")]
[StringLength(1000)]
public string FeeDeterminationNote { get; set; }

/// <summary>
/// The location in which primary arbtration of the lease occurred.
/// </summary>
[Column("PRIMARY_ARBITRATION_CITY")]
[StringLength(200)]
public string PrimaryArbitrationCity { get; set; }

[ForeignKey("LeaseCategoryTypeCode")]
[InverseProperty("PimsLeases")]
public virtual PimsLeaseCategoryType LeaseCategoryTypeCodeNavigation { get; set; }
Expand Down
34 changes: 17 additions & 17 deletions source/backend/entities/ef/PimsLeaseHist.cs
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,6 @@ public partial class PimsLeaseHist
[Column("ORIG_EXPIRY_DATE", TypeName = "datetime")]
public DateTime? OrigExpiryDate { get; set; }

[Column("TERMINATION_DATE", TypeName = "datetime")]
public DateTime? TerminationDate { get; set; }

[Column("LEASE_AMOUNT", TypeName = "money")]
public decimal? LeaseAmount { get; set; }

Expand Down Expand Up @@ -159,20 +156,6 @@ public partial class PimsLeaseHist
[StringLength(500)]
public string TerminationReason { get; set; }

[Column("IS_PUBLIC_BENEFIT")]
public bool? IsPublicBenefit { get; set; }

[Column("IS_FINANCIAL_GAIN")]
public bool? IsFinancialGain { get; set; }

[Column("FEE_DETERMINATION_NOTE")]
[StringLength(1000)]
public string FeeDeterminationNote { get; set; }

[Column("PRIMARY_ARBITRATION_CITY")]
[StringLength(200)]
public string PrimaryArbitrationCity { get; set; }

[Column("CONCURRENCY_CONTROL_NUMBER")]
public long ConcurrencyControlNumber { get; set; }

Expand Down Expand Up @@ -223,4 +206,21 @@ public partial class PimsLeaseHist
[Column("DB_LAST_UPDATE_USERID")]
[StringLength(30)]
public string DbLastUpdateUserid { get; set; }

[Column("TERMINATION_DATE", TypeName = "datetime")]
public DateTime? TerminationDate { get; set; }

[Column("IS_PUBLIC_BENEFIT")]
public bool? IsPublicBenefit { get; set; }

[Column("IS_FINANCIAL_GAIN")]
public bool? IsFinancialGain { get; set; }

[Column("FEE_DETERMINATION_NOTE")]
[StringLength(1000)]
public string FeeDeterminationNote { get; set; }

[Column("PRIMARY_ARBITRATION_CITY")]
[StringLength(200)]
public string PrimaryArbitrationCity { get; set; }
}
24 changes: 12 additions & 12 deletions source/backend/entities/ef/PimsLeasePeriod.cs
Original file line number Diff line number Diff line change
Expand Up @@ -132,12 +132,6 @@ public partial class PimsLeasePeriod
[Column("ADDL_RENT_AGREED_PMT", TypeName = "money")]
public decimal? AddlRentAgreedPmt { get; set; }

/// <summary>
/// GST dollar amount for the additional rent.
/// </summary>
[Column("ADDL_RENT_GST_AMOUNT", TypeName = "money")]
public decimal? AddlRentGstAmount { get; set; }

/// <summary>
/// Is the variable additional rent payment subject to GST?
/// </summary>
Expand All @@ -150,12 +144,6 @@ public partial class PimsLeasePeriod
[Column("VBL_RENT_AGREED_PMT", TypeName = "money")]
public decimal? VblRentAgreedPmt { get; set; }

/// <summary>
/// GST dollar amount for the variable rent.
/// </summary>
[Column("VBL_RENT_GST_AMOUNT", TypeName = "money")]
public decimal? VblRentGstAmount { get; set; }

/// <summary>
/// Is the variable rent payment subject to GST?
/// </summary>
Expand Down Expand Up @@ -252,6 +240,18 @@ public partial class PimsLeasePeriod
[StringLength(30)]
public string DbLastUpdateUserid { get; set; }

/// <summary>
/// GST dollar amount for the additional rent.
/// </summary>
[Column("ADDL_RENT_GST_AMOUNT", TypeName = "money")]
public decimal? AddlRentGstAmount { get; set; }

/// <summary>
/// GST dollar amount for the variable rent.
/// </summary>
[Column("VBL_RENT_GST_AMOUNT", TypeName = "money")]
public decimal? VblRentGstAmount { get; set; }

[ForeignKey("AddlRentFreq")]
[InverseProperty("PimsLeasePeriodAddlRentFreqNavigations")]
public virtual PimsLeasePmtFreqType AddlRentFreqNavigation { get; set; }
Expand Down
12 changes: 6 additions & 6 deletions source/backend/entities/ef/PimsLeasePeriodHist.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,18 +80,12 @@ public partial class PimsLeasePeriodHist
[Column("ADDL_RENT_AGREED_PMT", TypeName = "money")]
public decimal? AddlRentAgreedPmt { get; set; }

[Column("ADDL_RENT_GST_AMOUNT", TypeName = "money")]
public decimal? AddlRentGstAmount { get; set; }

[Column("IS_ADDL_RENT_SUBJECT_TO_GST")]
public bool? IsAddlRentSubjectToGst { get; set; }

[Column("VBL_RENT_AGREED_PMT", TypeName = "money")]
public decimal? VblRentAgreedPmt { get; set; }

[Column("VBL_RENT_GST_AMOUNT", TypeName = "money")]
public decimal? VblRentGstAmount { get; set; }

[Column("IS_VBL_RENT_SUBJECT_TO_GST")]
public bool? IsVblRentSubjectToGst { get; set; }

Expand Down Expand Up @@ -145,4 +139,10 @@ public partial class PimsLeasePeriodHist
[Column("DB_LAST_UPDATE_USERID")]
[StringLength(30)]
public string DbLastUpdateUserid { get; set; }

[Column("ADDL_RENT_GST_AMOUNT", TypeName = "money")]
public decimal? AddlRentGstAmount { get; set; }

[Column("VBL_RENT_GST_AMOUNT", TypeName = "money")]
public decimal? VblRentGstAmount { get; set; }
}
3 changes: 3 additions & 0 deletions source/backend/entities/ef/PimsPropertyActivityHist.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ public partial class PimsPropertyActivityHist
[Column("COMPLETION_DT")]
public DateOnly? CompletionDt { get; set; }

[Column("DESCRIPTION")]
public string Description { get; set; }

[Column("REQUEST_SOURCE")]
[StringLength(2000)]
public string RequestSource { get; set; }
Expand Down
12 changes: 6 additions & 6 deletions source/backend/entities/ef/PimsPropertyLease.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,6 @@ public partial class PimsPropertyLease
[Column("LEASE_AREA")]
public float? LeaseArea { get; set; }

/// <summary>
/// Geospatial location (pin) of property
/// </summary>
[Column("LOCATION", TypeName = "geometry")]
public Geometry Location { get; set; }

[Column("CONCURRENCY_CONTROL_NUMBER")]
public long ConcurrencyControlNumber { get; set; }

Expand Down Expand Up @@ -97,6 +91,12 @@ public partial class PimsPropertyLease
[StringLength(30)]
public string DbLastUpdateUserid { get; set; }

/// <summary>
/// Geospatial location (pin) of property
/// </summary>
[Column("LOCATION", TypeName = "geometry")]
public Geometry Location { get; set; }

[ForeignKey("AreaUnitTypeCode")]
[InverseProperty("PimsPropertyLeases")]
public virtual PimsAreaUnitType AreaUnitTypeCodeNavigation { get; set; }
Expand Down
12 changes: 6 additions & 6 deletions source/backend/entities/ef/PimsPropertyResearchFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,6 @@ public partial class PimsPropertyResearchFile
[Column("RESEARCH_SUMMARY")]
public string ResearchSummary { get; set; }

/// <summary>
/// Geospatial location (pin) of property
/// </summary>
[Column("LOCATION", TypeName = "geometry")]
public Geometry Location { get; set; }

[Column("CONCURRENCY_CONTROL_NUMBER")]
public long ConcurrencyControlNumber { get; set; }

Expand Down Expand Up @@ -121,6 +115,12 @@ public partial class PimsPropertyResearchFile
[StringLength(30)]
public string DbLastUpdateUserid { get; set; }

/// <summary>
/// Geospatial location (pin) of property
/// </summary>
[Column("LOCATION", TypeName = "geometry")]
public Geometry Location { get; set; }

[InverseProperty("PropertyResearchFile")]
public virtual ICollection<PimsPrfPropResearchPurposeType> PimsPrfPropResearchPurposeTypes { get; set; } = new List<PimsPrfPropResearchPurposeType>();

Expand Down
Loading