2023-11-24 15:28:04 +07:00
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Discipline.Service.Requests
|
|
|
|
|
{
|
|
|
|
|
public class DisciplineDisciplinaryInvestigateRequest
|
|
|
|
|
{
|
|
|
|
|
public string investigationDetail { get; set; }
|
|
|
|
|
public string? investigationDetailOther { get; set; }
|
|
|
|
|
public DateTime investigationDateStart { get; set; }
|
|
|
|
|
public DateTime investigationDateEnd { get; set; }
|
|
|
|
|
public string investigationDescription { get; set; }
|
|
|
|
|
public string investigationStatusResult { get; set; }
|
|
|
|
|
public string? investigationCauseText { get; set; }
|
2023-12-01 09:46:39 +07:00
|
|
|
public bool investigationExtendStatus { get; set; } = false;
|
|
|
|
|
public int? investigationDaysExtend { get; set; }
|
2023-11-24 15:28:04 +07:00
|
|
|
public string? result { get; set; }
|
|
|
|
|
public Guid[] directors { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|