แก้ไขข้อมมูลบุคคลบรรจุ
This commit is contained in:
parent
0c56512f54
commit
258a95a0e2
19 changed files with 11975 additions and 231 deletions
|
|
@ -2,63 +2,39 @@
|
|||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using BMA.EHR.Domain.Models.Base;
|
||||
using BMA.EHR.Domain.Models.MetaData;
|
||||
|
||||
namespace BMA.EHR.Domain.Models.Organizations
|
||||
{
|
||||
public class PositionMasterEntity : EntityBase
|
||||
{
|
||||
|
||||
//[ForeignKey("PositionId")]
|
||||
//public Position? Position_PositionId { get; set; }
|
||||
|
||||
[Column(Order = 2), Comment("PositionId")]
|
||||
public Guid? PositionId { get; set; }
|
||||
|
||||
//[ForeignKey("PositionPathId")]
|
||||
//public PositionPath? PositionPath_PositionPathId { get; set; }
|
||||
|
||||
[Column(Order = 3), Comment("PositionPathId")]
|
||||
public Guid? PositionPathId { get; set; }
|
||||
|
||||
//[ForeignKey("PositionTypeId")]
|
||||
//public PositionType? PositionType_PositionTypeId { get; set; }
|
||||
public PositionPath? PositionPath { get; set; }
|
||||
|
||||
[Column(Order = 4), Comment("PositionTypeId")]
|
||||
public Guid? PositionTypeId { get; set; }
|
||||
|
||||
//[ForeignKey("PositionExecutiveId")]
|
||||
//public PositionExecutive? PositionExecutive_PositionExecutiveId { get; set; }
|
||||
public PositionType? PositionType { get; set; }
|
||||
|
||||
[Column(Order = 5), Comment("PositionExecutiveId")]
|
||||
public Guid? PositionExecutiveId { get; set; }
|
||||
|
||||
//[ForeignKey("ExcutiveSideId")]
|
||||
//public PositionExecutiveSide? PositionExecutiveSide_ExcutiveSideId { get; set; }
|
||||
public PositionExecutive? PositionExecutive { get; set; }
|
||||
|
||||
[Column(Order = 6), Comment("PositionExecutiveSideId")]
|
||||
public Guid? PositionExecutiveSideId { get; set; }
|
||||
|
||||
//[ForeignKey("PathSideId")]
|
||||
//public PositionPathSide? PositionPathSide_PathSideId { get; set; }
|
||||
public PositionExecutiveSide? PositionExecutiveSide { get; set; }
|
||||
|
||||
[Column(Order = 7), Comment("PositionPathSideId")]
|
||||
public Guid? PositionPathSideId { get; set; }
|
||||
public PositionPathSide? PositionPathSide { get; set; }
|
||||
|
||||
[Column(Order = 8), Comment("PositionLineId")]
|
||||
public Guid? PositionLineId { get; set; }
|
||||
|
||||
//[Column(Order = 9), Comment("PositionLevelId")]
|
||||
//public Guid? PositionLevelId { get; set; }
|
||||
public PositionLine? PositionLine { get; set; }
|
||||
|
||||
[Column(Order = 10), Comment("PositionStatusId")]
|
||||
public Guid? PositionStatusId { get; set; }
|
||||
public PositionStatus? PositionStatus { get; set; }
|
||||
|
||||
[Column(Order = 11), Comment("PositionCondition")]
|
||||
public string? PositionCondition { get; set; }
|
||||
|
||||
[Column(Order = 12), Comment("PositionStatus")]
|
||||
public Guid? PositionStatus { get; set; }
|
||||
|
||||
[Column(Order = 13), Comment("PositionMasterUserNote")]
|
||||
public string? PositionMasterUserNote { get; set; }
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue