เก็บประวัติการขยายเวลา

This commit is contained in:
Kittapath 2023-12-06 23:43:14 +07:00
parent 8dae449c62
commit 0c1ae31b22
12 changed files with 11898 additions and 0 deletions

View file

@ -0,0 +1,23 @@
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using BMA.EHR.Domain.Models.Base;
using BMA.EHR.Domain.Models.MetaData;
using BMA.EHR.Domain.Models.Organizations;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Domain.Models.Discipline
{
public class DisciplineDisciplinaryExtend : EntityBase
{
[Comment("ชื่อการขยาย")]
public string? Name { get; set; }
[Comment("ครั้งที่ขยาย")]
public int Num { get; set; }
[Comment("วันที่เริ่ม")]
public DateTime? DateStart { get; set; }
[Comment("วันที่สิ้นสุด")]
public DateTime? DateEnd { get; set; }
[Required, Comment("Id เรื่องสอบสวน")]
public DisciplineDisciplinary DisciplineDisciplinary { get; set; }
}
}