2024-10-14 10:01:49 +06:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace HRM.BO.Report
|
|
|
|
|
{
|
|
|
|
|
public class EmployeeBasicInfo: BasicBaseObject
|
|
|
|
|
{
|
|
|
|
|
public EmployeeBasicInfo()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string EmployeeNo { get; set; }
|
|
|
|
|
public string Name { get; set; }
|
2024-12-12 16:44:47 +06:00
|
|
|
|
public string Department { get; set; }
|
|
|
|
|
public string Floor { get; set; } = string.Empty;
|
|
|
|
|
public string Section { get; set; } = string.Empty;
|
|
|
|
|
public string Line { get; set; } = string.Empty;
|
2024-10-14 10:01:49 +06:00
|
|
|
|
public int Gender { get; set; }
|
2024-12-12 16:44:47 +06:00
|
|
|
|
public string GenderDescription { get; set; } = string.Empty;
|
2024-10-14 10:01:49 +06:00
|
|
|
|
public string RName { get; set; }
|
|
|
|
|
public DateTime BirthDate { get; set; }
|
|
|
|
|
public DateTime JoiningDate { get; set; }
|
|
|
|
|
public DateTime DateOfConfirmation { get; set; }
|
|
|
|
|
public int MaritalStatusId { get; set; }
|
2024-12-12 16:44:47 +06:00
|
|
|
|
public string MaritalStatus { get; set; } = string.Empty;
|
2024-10-14 10:01:49 +06:00
|
|
|
|
}
|
|
|
|
|
}
|