add: Add Person Profile to Table

This commit is contained in:
Suphonchai Phoonsawat 2024-07-11 14:52:54 +07:00
parent 49eb785a92
commit 96a2c8d94f
13 changed files with 3727 additions and 23 deletions

View file

@ -67,9 +67,15 @@ namespace BMA.EHR.Domain.Models.Leave.TimeAttendants
public string? CheckOutStatus { get; set; } = string.Empty;
[Comment("สถานะการของลงเวลาพิเศษ")]
public string? EditStatus { get; set; } = string.Empty;
public string? EditStatus { get; set; } = string.Empty;
[Comment("เหตุผลการอนุมัติ/ไม่อนุมัติขอลงเวลาพิเศษ")]
public string? EditReason { get; set; } = string.Empty;
public string? EditReason { get; set; } = string.Empty;
public string? Prefix { get; set; }
public string? FirstName { get; set; }
public string? LastName { get; set; }
}
}