add
LV2_015 - รายการขอยกเลิกการลา (ADMIN) LV2_008 - ขอยกเลิกการลา (USER)
This commit is contained in:
parent
1a4d03cdd9
commit
0c2814e53b
13 changed files with 3320 additions and 14 deletions
|
|
@ -0,0 +1,21 @@
|
|||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace BMA.EHR.Leave.Service.DTOs.LeaveRequest
|
||||
{
|
||||
public class GetLeaveCancelRequestDto
|
||||
{
|
||||
[Required]
|
||||
public Guid Type { get; set; } = Guid.Empty;
|
||||
|
||||
[Required]
|
||||
public string Status { get; set; } = string.Empty;
|
||||
|
||||
[Required]
|
||||
public int Page { get; set; } = 1;
|
||||
|
||||
[Required]
|
||||
public int PageSize { get; set; } = 10;
|
||||
|
||||
public string Keyword { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue