27 lines
910 B
C#
27 lines
910 B
C#
using System;
|
|
|
|
namespace HRM.BO.Report
|
|
{
|
|
public class EmployeeBasicInfo: BasicBaseObject
|
|
{
|
|
public EmployeeBasicInfo()
|
|
{
|
|
|
|
}
|
|
|
|
public string EmployeeNo { get; set; }
|
|
public string Name { get; set; }
|
|
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;
|
|
public int Gender { get; set; }
|
|
public string GenderDescription { get; set; } = string.Empty;
|
|
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; }
|
|
public string MaritalStatus { get; set; } = string.Empty;
|
|
}
|
|
} |