เพิ่ม 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

View file

@ -12,24 +12,24 @@ namespace BMA.EHR.Domain.Models.Insignias
[Required]
public DateTime RequestDate { get; set; }
public decimal? Salary { get; set; }
public double? Salary { get; set; }
public bool IsApprove { get; set; } = false;
[MaxLength(50)]
public string QualificationStatus { get; set; }
public string? QualificationStatus { get; set; }
[MaxLength(50)]
public string DocumentStatus { get; set; }
public string? DocumentStatus { get; set; }
[Column(TypeName = "text")]
public string Note { get; set; }
public string? Note { get; set; }
[MaxLength(50)]
public string Special { get; set; }
public string? Special { get; set; }
[Column(TypeName = "text")]
public string MatchingConditions { get; set; }
public string? MatchingConditions { get; set; }
public Profile Profile { get; set; }