-
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
1 parent
3bdf225
commit a6071df
Showing
6 changed files
with
126 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.ComponentModel.DataAnnotations; | ||
using System.ComponentModel.DataAnnotations.Schema; | ||
using Microsoft.EntityFrameworkCore; | ||
|
||
#nullable disable | ||
|
||
namespace Pims.Dal.Entities | ||
{ | ||
[Table("PIMS_AGREEMENT_STATUS_TYPE")] | ||
public partial class PimsAgreementStatusType | ||
{ | ||
public PimsAgreementStatusType() | ||
{ | ||
PimsAgreements = new HashSet<PimsAgreement>(); | ||
} | ||
|
||
[Key] | ||
[Column("AGREEMENT_STATUS_TYPE_CODE")] | ||
[StringLength(20)] | ||
public string AgreementStatusTypeCode { get; set; } | ||
[Required] | ||
[Column("DESCRIPTION")] | ||
[StringLength(200)] | ||
public string Description { get; set; } | ||
[Column("DISPLAY_ORDER")] | ||
public int? DisplayOrder { get; set; } | ||
[Column("IS_DISABLED")] | ||
public bool? IsDisabled { get; set; } | ||
[Column("CONCURRENCY_CONTROL_NUMBER")] | ||
public long ConcurrencyControlNumber { get; set; } | ||
[Column("DB_CREATE_TIMESTAMP", TypeName = "datetime")] | ||
public DateTime DbCreateTimestamp { get; set; } | ||
[Required] | ||
[Column("DB_CREATE_USERID")] | ||
[StringLength(30)] | ||
public string DbCreateUserid { get; set; } | ||
[Column("DB_LAST_UPDATE_TIMESTAMP", TypeName = "datetime")] | ||
public DateTime DbLastUpdateTimestamp { get; set; } | ||
[Required] | ||
[Column("DB_LAST_UPDATE_USERID")] | ||
[StringLength(30)] | ||
public string DbLastUpdateUserid { get; set; } | ||
|
||
[InverseProperty(nameof(PimsAgreement.AgreementStatusTypeCodeNavigation))] | ||
public virtual ICollection<PimsAgreement> PimsAgreements { 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
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