31 lines
1.2 KiB
C#
31 lines
1.2 KiB
C#
namespace BMA.EHR.Application.Requests
|
|
{
|
|
public class InsigniaRequestItem
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string CitizenId { get; set; }
|
|
public string? ProfileType { get; set; }
|
|
public Guid ProfileId { get; set; }
|
|
public string FullName { get; set; }
|
|
public dynamic Position { get; set; }
|
|
public string PosNo { get; set; }
|
|
public string Rank { get; set; }
|
|
public string Salary { get; set; }
|
|
public string LastInsignia { get; set; }
|
|
public string RequestInsignia { get; set; }
|
|
public string RequestInsigniaShortName { get; set; }
|
|
public string Level { get; set; }
|
|
public string Status { get; set; }
|
|
public bool IsApprove { get; set; }
|
|
public DateTime? RequestDate { get; set; }
|
|
public string? RequestNote { get; set; }
|
|
public string? Reason { get; set; }
|
|
public bool? MarkDiscipline { get; set; }
|
|
public bool? MarkLeave { get; set; }
|
|
public bool? MarkRate { get; set; }
|
|
public bool? MarkInsignia { get; set; }
|
|
public List<InsigniaRequestDoc>? Docs { get; set; }
|
|
|
|
public List<MatchingCondition> MatchingConditions { get; set; } = new List<MatchingCondition>();
|
|
}
|
|
}
|