2023-11-29 09:44:16 +07:00
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Discipline.Service.Requests
|
|
|
|
|
{
|
|
|
|
|
public class DisciplineResultRequest
|
|
|
|
|
{
|
2024-01-11 09:25:42 +07:00
|
|
|
public string? resultDescription { get; set; }// *สรุปผลการพิจารณา
|
2023-12-19 21:40:32 +07:00
|
|
|
public string? oc { get; set; }//
|
|
|
|
|
public string? disciplineType { get; set; }//
|
|
|
|
|
public string? titleType { get; set; }//
|
|
|
|
|
public int? year { get; set; }//
|
2023-11-29 09:44:16 +07:00
|
|
|
}
|
2025-07-16 17:18:51 +07:00
|
|
|
|
|
|
|
|
public class DisciplineResultAdvanceSearcRequest
|
|
|
|
|
{
|
|
|
|
|
public int page { get; set; } = 1;
|
|
|
|
|
public int pageSize { get; set; } = 25;
|
|
|
|
|
public string keyword { get; set; } = string.Empty;
|
|
|
|
|
public string status { get; set; } = string.Empty;
|
|
|
|
|
public string? respondentType { get; set; } // ผู้ถูกสืบสวน
|
|
|
|
|
public string? offenseDetails { get; set; } // ลักษณะความผิด
|
|
|
|
|
public string? disciplinaryFaultLevel { get; set; } // ระดับโทษความผิด
|
|
|
|
|
public string? disciplinaryCaseFault { get; set; } // กรณีความผิด
|
|
|
|
|
public DateTime? disciplinaryDateStart { get; set; } // วันที่เริ่มต้นสอบสวน
|
|
|
|
|
public DateTime? disciplinaryDateEnd { get; set; } // วันที่สิ้นสุดสอบสวน
|
|
|
|
|
public string? resultDisciplineType { get; set; } // ประเภทวินัย
|
|
|
|
|
public string? resultTitleType { get; set; } // ประเภทของเรื่อง
|
|
|
|
|
public string? resultOc { get; set; } // หน่วยงาน/ส่วนราชการ
|
|
|
|
|
public int? resultYear { get; set; } // ปีงบประมาณ
|
2025-10-06 16:28:16 +07:00
|
|
|
public string? sortBy { get; set; }
|
|
|
|
|
public bool? descending { get; set; }
|
2025-07-16 17:18:51 +07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2023-11-29 09:44:16 +07:00
|
|
|
}
|