24 lines
645 B
C#
24 lines
645 B
C#
using BMA.EHR.MetaData.Service.Models;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace BMA.EHR.Organization.Service.Models
|
|
{
|
|
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")]
|
|
public Guid? PositionLevelId { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|