-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
224 changed files
with
85,331 additions
and
7,157 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.ComponentModel.DataAnnotations; | ||
using System.ComponentModel.DataAnnotations.Schema; | ||
using Microsoft.EntityFrameworkCore; | ||
|
||
namespace Pims.Dal.Entities; | ||
|
||
/// <summary> | ||
/// Description of the consultation outcome type for a lease or license. | ||
/// </summary> | ||
[Table("PIMS_CONSULTATION_OUTCOME_TYPE")] | ||
public partial class PimsConsultationOutcomeType | ||
{ | ||
/// <summary> | ||
/// Code value of the consultation outcome type. | ||
/// </summary> | ||
[Key] | ||
[Column("CONSULTATION_OUTCOME_TYPE_CODE")] | ||
[StringLength(20)] | ||
public string ConsultationOutcomeTypeCode { get; set; } | ||
|
||
/// <summary> | ||
/// Description of the consultation outcome type. | ||
/// </summary> | ||
[Required] | ||
[Column("DESCRIPTION")] | ||
[StringLength(200)] | ||
public string Description { get; set; } | ||
|
||
/// <summary> | ||
/// Onscreen display order of the code types. | ||
/// </summary> | ||
[Column("DISPLAY_ORDER")] | ||
public int? DisplayOrder { get; set; } | ||
|
||
/// <summary> | ||
/// Indicates if the code type is active. | ||
/// </summary> | ||
[Column("IS_DISABLED")] | ||
public bool IsDisabled { 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> | ||
[Column("CONCURRENCY_CONTROL_NUMBER")] | ||
public long ConcurrencyControlNumber { get; set; } | ||
|
||
/// <summary> | ||
/// The date and time the record was created. | ||
/// </summary> | ||
[Column("DB_CREATE_TIMESTAMP", TypeName = "datetime")] | ||
public DateTime DbCreateTimestamp { get; set; } | ||
|
||
/// <summary> | ||
/// The user or proxy account that created the record. | ||
/// </summary> | ||
[Required] | ||
[Column("DB_CREATE_USERID")] | ||
[StringLength(30)] | ||
public string DbCreateUserid { get; set; } | ||
|
||
/// <summary> | ||
/// The date and time the record was created or last updated. | ||
/// </summary> | ||
[Column("DB_LAST_UPDATE_TIMESTAMP", TypeName = "datetime")] | ||
public DateTime DbLastUpdateTimestamp { get; set; } | ||
|
||
/// <summary> | ||
/// The user or proxy account that created or last updated the record. | ||
/// </summary> | ||
[Required] | ||
[Column("DB_LAST_UPDATE_USERID")] | ||
[StringLength(30)] | ||
public string DbLastUpdateUserid { get; set; } | ||
|
||
[InverseProperty("ConsultationOutcomeTypeCodeNavigation")] | ||
public virtual ICollection<PimsLeaseConsultation> PimsLeaseConsultations { get; set; } = new List<PimsLeaseConsultation>(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.ComponentModel.DataAnnotations; | ||
using System.ComponentModel.DataAnnotations.Schema; | ||
using Microsoft.EntityFrameworkCore; | ||
using NetTopologySuite.Geometries; | ||
|
||
namespace Pims.Dal.Entities; | ||
|
||
[Keyless] | ||
public partial class PimsPropertyBoundaryLiteVw | ||
{ | ||
[Column("PROPERTY_ID")] | ||
public long PropertyId { get; set; } | ||
|
||
[Column("GEOMETRY", TypeName = "geometry")] | ||
public Geometry Geometry { get; set; } | ||
|
||
[Column("IS_OWNED")] | ||
public bool IsOwned { get; set; } | ||
|
||
[Column("IS_RETIRED")] | ||
public bool? IsRetired { get; set; } | ||
|
||
[Column("IS_OTHER_INTEREST")] | ||
public bool? IsOtherInterest { get; set; } | ||
|
||
[Column("IS_DISPOSED")] | ||
public bool? IsDisposed { get; set; } | ||
|
||
[Column("HAS_ACTIVE_ACQUISITION_FILE")] | ||
public bool? HasActiveAcquisitionFile { get; set; } | ||
|
||
[Column("HAS_ACTIVE_RESEARCH_FILE")] | ||
public bool? HasActiveResearchFile { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.ComponentModel.DataAnnotations; | ||
using System.ComponentModel.DataAnnotations.Schema; | ||
using Microsoft.EntityFrameworkCore; | ||
using NetTopologySuite.Geometries; | ||
|
||
namespace Pims.Dal.Entities; | ||
|
||
[Keyless] | ||
public partial class PimsPropertyLocationLiteVw | ||
{ | ||
[Column("PROPERTY_ID")] | ||
public long PropertyId { get; set; } | ||
|
||
[Column("GEOMETRY", TypeName = "geometry")] | ||
public Geometry Geometry { get; set; } | ||
|
||
[Column("IS_OWNED")] | ||
public bool IsOwned { get; set; } | ||
|
||
[Column("IS_RETIRED")] | ||
public bool? IsRetired { get; set; } | ||
|
||
[Column("IS_OTHER_INTEREST")] | ||
public bool? IsOtherInterest { get; set; } | ||
|
||
[Column("IS_DISPOSED")] | ||
public bool? IsDisposed { get; set; } | ||
|
||
[Column("HAS_ACTIVE_ACQUISITION_FILE")] | ||
public bool? HasActiveAcquisitionFile { get; set; } | ||
|
||
[Column("HAS_ACTIVE_RESEARCH_FILE")] | ||
public bool? HasActiveResearchFile { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.