api ตำแหน่ง draft

This commit is contained in:
Kittapath 2023-07-19 10:25:54 +07:00
parent 6b7fcaaba2
commit 6a572144ab
42 changed files with 32604 additions and 1 deletions

View file

@ -0,0 +1,41 @@
using System.Collections.Generic;
namespace BMA.EHR.Application.Requests
{
public class InsigniaResultSet
{
public Guid ProfileId { get; set; }
public string Prefix { get; set; }
public string FullName { get; set; }
public string Position { get; set; }
public string Rank { get; set; }
public string GovAge { get; set; }
public string Salary { get; set; }
public string LastInsignia { get; set; }
public int? LastInsigniaId { get; set; }
public string PosNo { get; set; }
public InsigniaItem RequestInsignia { get; set; }
public string Gender { get; set; }
public int Seq { get; set; }
public List<MatchingCondition> MatchingConditions { get; set; } = new List<MatchingCondition>();
}
public class MatchingCondition
{
public string Condition { get; set; } = "";
public string Result { get; set; } = "";
}
}