api report ประวัติสำหรับการเสนอขอพระราชทานเหรียญจักรพรรดิมาลาแล้ว #1778
Some checks failed
release-dev / release-dev (push) Failing after 11s

This commit is contained in:
Bright 2025-08-25 20:13:31 +07:00
parent 2d9f546023
commit 75ddebba37
5 changed files with 139 additions and 2 deletions

View file

@ -0,0 +1,16 @@
namespace BMA.EHR.Application.Responses.Profiles
{
public class GetProfileSalaryDto
{
public DateTime DateAffect { get; set; }
public string Position { get; set; } = string.Empty;
public string Root { get; set; } = string.Empty;
public string Child1 { get; set; } = string.Empty;
public string Child2 { get; set; } = string.Empty;
public string Child3 { get; set; } = string.Empty;
public string Child4 { get; set; } = string.Empty;
public int Age { get; set; } = 0;
public int Amount { get; set; } = 0;
public string Remark { get; set; } = string.Empty;
}
}

View file

@ -0,0 +1,11 @@
namespace BMA.EHR.Application.Responses.Profiles
{
public class GetProfileSalaryResultDto
{
public string Message { get; set; } = string.Empty;
public int Status { get; set; } = -1;
public List<GetProfileSalaryDto> Result { get; set; } = new();
}
}