api อัพเดทสถานะ Mark ระบบเครื่องราช
This commit is contained in:
parent
6e1965ba79
commit
851c024171
6 changed files with 169 additions and 1 deletions
23
BMA.EHR.Application/Responses/Profiles/GetMarkStatusDto.cs
Normal file
23
BMA.EHR.Application/Responses/Profiles/GetMarkStatusDto.cs
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
namespace BMA.EHR.Application.Responses.Profiles
|
||||
{
|
||||
public class GetMarkStatusDto
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public bool? MarkDiscipline { get; set; } = false;
|
||||
public bool? MarkLeave { get; set; } = false;
|
||||
public bool? MarkRate { get; set; } = false;
|
||||
public bool? MarkInsignia { get; set; } = false;
|
||||
|
||||
public string? Apr1 { get; set; }
|
||||
public string? Apr2 { get; set; }
|
||||
public string? Apr3 { get; set; }
|
||||
public string? Apr4 { get; set; }
|
||||
public string? Apr5 { get; set; }
|
||||
|
||||
public string? Oct1 { get; set; }
|
||||
public string? Oct2 { get; set; }
|
||||
public string? Oct3 { get; set; }
|
||||
public string? Oct4 { get; set; }
|
||||
public string? Oct5 { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
namespace BMA.EHR.Application.Responses.Profiles
|
||||
{
|
||||
public class GetMarkStatusResultDto
|
||||
{
|
||||
public string Message { get; set; } = string.Empty;
|
||||
|
||||
public int Status { get; set; } = -1;
|
||||
|
||||
public List<GetMarkStatusDto> Result { get; set; } = new();
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue