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

IS98 Scaffold #4601

Merged
merged 2 commits into from
Jan 18, 2025
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
42 changes: 21 additions & 21 deletions source/backend/entities/ef/PimsAcquisitionFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,27 @@ public partial class PimsAcquisitionFile
[StringLength(20)]
public string SubfileInterestTypeCode { get; set; }

/// <summary>
/// Foreign key to the PIMS_ACQ_FILE_APPRAISAL_TYPE table.
/// </summary>
[Column("ACQ_FILE_APPRAISAL_TYPE_CODE")]
[StringLength(20)]
public string AcqFileAppraisalTypeCode { get; set; }

/// <summary>
/// Foreign key to the PIMS_ACQ_FILE_LGL_SRVY_TYPE table.
/// </summary>
[Column("ACQ_FILE_LGL_SRVY_TYPE_CODE")]
[StringLength(20)]
public string AcqFileLglSrvyTypeCode { get; set; }

/// <summary>
/// Foreign key to the PIMS_ACQ_FILE_EXPROP_RISK_TYPE table.
/// </summary>
[Column("ACQ_FILE_EXPROP_RISK_TYPE_CODE")]
[StringLength(20)]
public string AcqFileExpropRiskTypeCode { get; set; }

/// <summary>
/// Descriptive name given to the acquisition file.
/// </summary>
Expand Down Expand Up @@ -268,27 +289,6 @@ public partial class PimsAcquisitionFile
[StringLength(30)]
public string DbLastUpdateUserid { get; set; }

/// <summary>
/// Foreign key to the PIMS_ACQ_FILE_APPRAISAL_TYPE table.
/// </summary>
[Column("ACQ_FILE_APPRAISAL_TYPE_CODE")]
[StringLength(20)]
public string AcqFileAppraisalTypeCode { get; set; }

/// <summary>
/// Foreign key to the PIMS_ACQ_FILE_LGL_SRVY_TYPE table.
/// </summary>
[Column("ACQ_FILE_LGL_SRVY_TYPE_CODE")]
[StringLength(20)]
public string AcqFileLglSrvyTypeCode { get; set; }

/// <summary>
/// Foreign key to the PIMS_ACQ_FILE_EXPROP_RISK_TYPE table.
/// </summary>
[Column("ACQ_FILE_EXPROP_RISK_TYPE_CODE")]
[StringLength(20)]
public string AcqFileExpropRiskTypeCode { get; set; }

[ForeignKey("AcqFileAppraisalTypeCode")]
[InverseProperty("PimsAcquisitionFiles")]
public virtual PimsAcqFileAppraisalType AcqFileAppraisalTypeCodeNavigation { get; set; }
Expand Down
24 changes: 12 additions & 12 deletions source/backend/entities/ef/PimsAcquisitionFileHist.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,18 @@ public partial class PimsAcquisitionFileHist
[StringLength(20)]
public string SubfileInterestTypeCode { get; set; }

[Column("ACQ_FILE_APPRAISAL_TYPE_CODE")]
[StringLength(20)]
public string AcqFileAppraisalTypeCode { get; set; }

[Column("ACQ_FILE_LGL_SRVY_TYPE_CODE")]
[StringLength(20)]
public string AcqFileLglSrvyTypeCode { get; set; }

[Column("ACQ_FILE_EXPROP_RISK_TYPE_CODE")]
[StringLength(20)]
public string AcqFileExpropRiskTypeCode { get; set; }

[Required]
[Column("FILE_NAME")]
[StringLength(500)]
Expand Down Expand Up @@ -159,16 +171,4 @@ public partial class PimsAcquisitionFileHist
[Column("FILE_NUMBER")]
[StringLength(18)]
public string FileNumber { get; set; }

[Column("ACQ_FILE_APPRAISAL_TYPE_CODE")]
[StringLength(20)]
public string AcqFileAppraisalTypeCode { get; set; }

[Column("ACQ_FILE_LGL_SRVY_TYPE_CODE")]
[StringLength(20)]
public string AcqFileLglSrvyTypeCode { get; set; }

[Column("ACQ_FILE_EXPROP_RISK_TYPE_CODE")]
[StringLength(20)]
public string AcqFileExpropRiskTypeCode { get; set; }
}
18 changes: 9 additions & 9 deletions source/backend/entities/ef/PimsCompensationRequisitionHist.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,6 @@ public partial class PimsCompensationRequisitionHist
[Column("LEASE_ID")]
public long? LeaseId { get; set; }

[Column("ACQUISITION_OWNER_ID")]
public long? AcquisitionOwnerId { get; set; }

[Column("INTEREST_HOLDER_ID")]
public long? InterestHolderId { get; set; }

[Column("ACQUISITION_FILE_TEAM_ID")]
public long? AcquisitionFileTeamId { get; set; }

[Column("CHART_OF_ACCOUNTS_ID")]
public long? ChartOfAccountsId { get; set; }

Expand Down Expand Up @@ -147,4 +138,13 @@ public partial class PimsCompensationRequisitionHist

[Column("ADV_PMT_SERVED_DT")]
public DateOnly? AdvPmtServedDt { get; set; }

[Column("ACQUISITION_OWNER_ID")]
public long? AcquisitionOwnerId { get; set; }

[Column("INTEREST_HOLDER_ID")]
public long? InterestHolderId { get; set; }

[Column("ACQUISITION_FILE_TEAM_ID")]
public long? AcquisitionFileTeamId { get; set; }
}
2 changes: 1 addition & 1 deletion source/backend/entities/ef/PimsLease.cs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public partial class PimsLease
/// Manually etered lease description, not the legal description
/// </summary>
[Column("LEASE_DESCRIPTION")]
[StringLength(2000)]
[StringLength(4000)]
public string LeaseDescription { get; set; }

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion source/backend/entities/ef/PimsLeaseHist.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public partial class PimsLeaseHist
public string PsFileNo { get; set; }

[Column("LEASE_DESCRIPTION")]
[StringLength(2000)]
[StringLength(4000)]
public string LeaseDescription { get; set; }

[Column("LEASE_NOTES")]
Expand Down
2 changes: 1 addition & 1 deletion source/backend/entities/ef/PimsPropertyResearchFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public partial class PimsPropertyResearchFile
/// Summary of the property research.
/// </summary>
[Column("RESEARCH_SUMMARY")]
[StringLength(1000)]
[StringLength(4000)]
public string ResearchSummary { get; set; }

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion source/backend/entities/ef/PimsPropertyResearchFileHist.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public partial class PimsPropertyResearchFileHist
public string DocumentReference { get; set; }

[Column("RESEARCH_SUMMARY")]
[StringLength(1000)]
[StringLength(4000)]
public string ResearchSummary { get; set; }

[Column("CONCURRENCY_CONTROL_NUMBER")]
Expand Down
Loading