2023-07-16 20:01:24 +07:00
|
|
|
|
using BMA.EHR.MetaData.Service.Models;
|
2023-05-10 20:11:47 +07:00
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
|
2023-07-16 20:01:24 +07:00
|
|
|
|
namespace BMA.EHR.Organization.Service.Models
|
2023-05-10 20:11:47 +07:00
|
|
|
|
{
|
|
|
|
|
|
public class AvailablePositionLevelEntity : EntityBase
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
[ForeignKey("PositionMasterId")]
|
|
|
|
|
|
public PositionMasterEntity? PositionMaster_PositionMasterId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[Column(Order = 2), Comment("PositionMasterId")]
|
|
|
|
|
|
public Guid? PositionMasterId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[Column(Order = 3), Comment("PositionLevelId")]
|
2023-09-05 11:38:43 +07:00
|
|
|
|
public PositionLevel? PositionLevel { get; set; }
|
2023-05-10 20:11:47 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|