2023-11-24 15:28:04 +07:00
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Discipline.Service.Requests
|
|
|
|
|
{
|
|
|
|
|
public class DisciplineDisciplinaryRequest
|
|
|
|
|
{
|
|
|
|
|
public string? DisciplinaryWitnesses { get; set; }
|
|
|
|
|
public string? DisciplinaryRecordAccuser { get; set; }
|
|
|
|
|
public string? DisciplinarySummaryEvidence { get; set; }
|
|
|
|
|
public string? DisciplinaryRefLaw { get; set; }
|
|
|
|
|
public string? DisciplinaryFaultLevel { get; set; }
|
|
|
|
|
public string? DisciplinaryInvestigateAt { get; set; }
|
|
|
|
|
public string? DisciplinaryCaseFault { get; set; }
|
2023-11-29 09:44:16 +07:00
|
|
|
public DateTime? DisciplinaryDateEvident { get; set; }
|
|
|
|
|
public DateTime? DisciplinaryDateAllegation { get; set; }
|
|
|
|
|
|
2024-01-11 09:25:42 +07:00
|
|
|
public DateTime? DisciplinaryDateStart { get; set; }
|
|
|
|
|
public DateTime? DisciplinaryDateEnd { get; set; }
|
2023-11-29 09:44:16 +07:00
|
|
|
public int? DaysExtend { get; set; }
|
2023-12-01 09:46:39 +07:00
|
|
|
public bool ExtendStatus { get; set; } = false;
|
2023-11-29 09:44:16 +07:00
|
|
|
public DateTime? DisciplinaryDateInvestigation { get; set; }
|
2024-01-11 09:25:42 +07:00
|
|
|
public DateTime? DisciplinaryDateResult { get; set; }
|
2023-11-29 09:44:16 +07:00
|
|
|
public string? DisciplinaryStatusResult { get; set; }
|
|
|
|
|
public string? DisciplinaryCauseText { get; set; }
|
|
|
|
|
public string? DisciplinaryResult { get; set; }
|
2024-01-03 09:13:33 +07:00
|
|
|
public string? DisciplinaryFaultLevelOther { get; set; }
|
2023-11-29 09:44:16 +07:00
|
|
|
|
2023-11-24 15:28:04 +07:00
|
|
|
public string? Result { get; set; }
|
|
|
|
|
public Guid[] directors { get; set; }
|
|
|
|
|
public DisciplineDisciplinaryInvestigateComplaintProfileRequest[] persons { get; set; }// กรณีบุคคลใส่ id คน มาใน array แต่ถ้าเป็น type อื่นจะ null
|
|
|
|
|
public Guid? organizationId { get; set; }// กรณีหน่วยงานใส่ id ของหน่วยงาน
|
|
|
|
|
public string respondentType { get; set; }// *ผู้ถูกร้องเรียน (PERSON คือ บุคคล, ORGANIZATION คือ หน่วยงาน, BANGKOK คือ กรุงเทพมหานคร)
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|