ระบบวินัยเพิ่มค้นหาขั้นสูง #1628, #1629, #1630, #1631
Some checks failed
release-dev / release-dev (push) Failing after 12s

This commit is contained in:
Bright 2025-07-16 17:18:51 +07:00
parent 6b73a0aa47
commit 1b861c1a65
8 changed files with 406 additions and 0 deletions

View file

@ -63,4 +63,19 @@ namespace BMA.EHR.Discipline.Service.Requests
public string? posLevelName { get; set; }
public string? profileType { get; set; }
}
public class DisciplineComplaintAdvanceSearcRequest
{
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 DateTime? dateReceivedStart { get; set; } // วันที่เริ่มต้นรับเรื่อง
public DateTime? dateReceivedEnd { get; set; } // วันที่สิ้นสุดรับเรื่อง
public string? respondentType { get; set; } // ผู้ถูกร้องเรียน
public string? offenseDetails { get; set; } // ลักษณะความผิด
public string? levelConsideration { get; set; } // ระดับการพิจารณา
public DateTime? dateConsiderationStart { get; set; } // วันที่เริ่มต้นการพิจารณา
public DateTime? dateConsiderationEnd { get; set; } // วันที่สิ้นสุดการพิจารณา
}
}