ย้ายมาออกรายงานผ่านระบบ
This commit is contained in:
parent
4987f7c5ad
commit
b817b781d2
144 changed files with 5573 additions and 63 deletions
31
Models/OrganizationPositionEntity.cs
Normal file
31
Models/OrganizationPositionEntity.cs
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
using BMA.EHR.Report.Service.Models;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace BMA.EHR.Profile.Service.Models
|
||||
{
|
||||
public class OrganizationPositionEntity : EntityBase
|
||||
{
|
||||
[ForeignKey("PositionMasterId")]
|
||||
public PositionMasterEntity? PositionMaster_PositionMasterId { get; set; }
|
||||
|
||||
[Column(Order = 2), Comment("Position Master")]
|
||||
public Guid? PositionMasterId { get; set; }
|
||||
|
||||
[Column(Order = 3), Comment("Is Director")]
|
||||
public bool? IsDirector { get; set; }
|
||||
|
||||
[Column(Order = 4), Comment("positionUserNote")]
|
||||
public string? PositionUserNote { get; set; }
|
||||
|
||||
[ForeignKey("OrganizationId")]
|
||||
public OrganizationEntity? Organization_OrganizationId { get; set; }
|
||||
|
||||
[Column(Order = 5), Comment("OrganizationId")]
|
||||
public Guid? OrganizationId { get; set; }
|
||||
|
||||
[Column(Order = 6), Comment("PositionNumberId")]
|
||||
public Guid? PositionNumberId { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue