2023-11-24 15:28:04 +07:00
|
|
|
|
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 DisciplineDisciplinary_DirectorInvestigate : EntityBase
|
|
|
|
|
|
{
|
|
|
|
|
|
[Required, Comment("อ้างอิงรหัสกรรมการ")]
|
|
|
|
|
|
public DisciplineDirector DisciplineDirector { get; set; }
|
|
|
|
|
|
[Required, Comment("อ้างอิงเรื่องสอบสวน")]
|
|
|
|
|
|
public DisciplineDisciplinary DisciplineDisciplinary { get; set; }
|
2023-12-21 08:41:40 +07:00
|
|
|
|
[Comment("หน้าที่")]
|
2024-01-22 17:20:57 +07:00
|
|
|
|
public string? Duty { get; set; } = string.Empty;
|
2024-01-03 10:20:27 +07:00
|
|
|
|
[Comment("เลขที่คำสั่ง")]
|
2024-01-22 17:20:57 +07:00
|
|
|
|
public string? CommandNo { get; set; } = string.Empty;
|
2023-11-24 15:28:04 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|