เพิ่ม api ผลตรวจเลือด

This commit is contained in:
Kittapath 2023-08-09 23:34:25 +07:00
parent 060765d373
commit 4a17aef039
18 changed files with 27329 additions and 562 deletions

File diff suppressed because it is too large Load diff

View file

@ -5,7 +5,7 @@
public Guid ProfileId { get; set; }
public string FullName { get; set; }
public string Position { get; set; }
public string PosNo { get; set; }
public Guid PosNo { get; set; }
public string Rank { get; set; }
public string Salary { get; set; }
public string LastInsignia { get; set; }
@ -15,7 +15,7 @@
public bool IsApprove { get; set; }
public DateTime? RequestDate { get; set; }
public string RequestNote { get; set; }
public List<InsigniaRequestDoc> Docs { get; set; }
public List<InsigniaRequestDoc>? Docs { get; set; }
public List<MatchingCondition> MatchingConditions { get; set; } = new List<MatchingCondition>();
}

View file

@ -16,12 +16,12 @@ namespace BMA.EHR.Application.Requests
public string GovAge { get; set; }
public string Salary { get; set; }
public double? Salary { get; set; }
public string LastInsignia { get; set; }
public int? LastInsigniaId { get; set; }
public Guid? LastInsigniaId { get; set; }
public string PosNo { get; set; }
public Guid PosNo { get; set; }
public InsigniaItem RequestInsignia { get; set; }

View file

@ -9,6 +9,6 @@ namespace BMA.EHR.Application.Requests
public string Year { get; set; }
public string RequestStatus { get; set; }
public string OrganizationName { get; set; }
public List<dynamic> Items { get; set; }
public List<InsigniaRequestItem> Items { get; set; }
}
}