17 lines
740 B
C#
17 lines
740 B
C#
namespace UtopiaCanteenSystem.Models;
|
|
|
|
/// <summary>
|
|
/// Employee info loaded from local HRMS by RFID (employee_rfid_tag → employee → department).
|
|
/// </summary>
|
|
public class HrmsEmployeeInfo
|
|
{
|
|
public string EmployeeId { get; set; } = string.Empty;
|
|
public string FirstName { get; set; } = string.Empty;
|
|
public string MiddleName { get; set; } = string.Empty;
|
|
public string DepartmentId { get; set; } = string.Empty;
|
|
public string DepartmentTitle { get; set; } = string.Empty;
|
|
public string DepartmentType { get; set; } = string.Empty;
|
|
/// <summary>Site from employee_rfid_tag.location_site_id; used for menu lookup (lunch_menu_week).</summary>
|
|
public string LocationSiteId { get; set; } = string.Empty;
|
|
}
|