35 lines
1.8 KiB
C#
35 lines
1.8 KiB
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace BMA.EHR.Discipline.Service.Requests
|
|
{
|
|
public class DisciplineResultRequest
|
|
{
|
|
public string? resultDescription { get; set; }// *สรุปผลการพิจารณา
|
|
public string? oc { get; set; }//
|
|
public string? disciplineType { get; set; }//
|
|
public string? titleType { get; set; }//
|
|
public int? year { get; set; }//
|
|
}
|
|
|
|
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; } // ปีงบประมาณ
|
|
public string? sortBy { get; set; }
|
|
public bool? descending { get; set; }
|
|
|
|
|
|
}
|
|
}
|