20 lines
872 B
C#
20 lines
872 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using BMA.EHR.Domain.Models.Base;
|
|
using BMA.EHR.Domain.Models.Organizations;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace BMA.EHR.Domain.Models.Discipline
|
|
{
|
|
public class DisciplineInvestigate_Director : EntityBase
|
|
{
|
|
[Required, Comment("อ้างอิงรหัสกรรมการ")]
|
|
public DisciplineDirector DisciplineDirector { get; set; }
|
|
[Required, Comment("อ้างอิงเรื่องสืบสวน")]
|
|
public DisciplineInvestigate DisciplineInvestigate { get; set; }
|
|
[Comment("หน้าที่")]
|
|
public string? Duty { get; set; } = string.Empty;
|
|
[Comment("เลขที่คำสั่ง")]
|
|
public string? CommandNo { get; set; } = string.Empty;
|
|
}
|
|
}
|