85 lines
3.4 KiB
C#
85 lines
3.4 KiB
C#
|
using System;
|
|||
|
|
|||
|
namespace HRM.BO.Report
|
|||
|
{
|
|||
|
public class EmployeeDetailInfo: BasicBaseObject
|
|||
|
{
|
|||
|
public EmployeeDetailInfo()
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
public int EmployeeId { get; set; }
|
|||
|
public string EmployeeNo { get; set; }
|
|||
|
public string Name { get; set; }
|
|||
|
public Decimal BasicSalary { get; set; }
|
|||
|
public Decimal GrossSalary { get; set; }
|
|||
|
public Decimal TaxAmount { get; set; }
|
|||
|
public string FatherName { get; set; }
|
|||
|
public string FatherOccupation { get; set; }
|
|||
|
public string MotherName { get; set; }
|
|||
|
public string MotherOccupation { get; set; }
|
|||
|
public string Gender { get; set; }
|
|||
|
public DateTime? BirthDate { get; set; }
|
|||
|
public string BirthPlace { get; set; }
|
|||
|
public string TinNo { get; set; }
|
|||
|
public DateTime? JoiningDate { get; set; }
|
|||
|
public string EmailAddress { get; set; }
|
|||
|
public string Category { get; set; }
|
|||
|
public string Location { get; set; }
|
|||
|
public string Status { get; set; }
|
|||
|
public string Division { get; set; }
|
|||
|
public int? DivisionId { get; set; }
|
|||
|
public string Company { get; set; }
|
|||
|
public int? CompanyId { get; set; }
|
|||
|
public string Department { get; set; }
|
|||
|
public int? DepartmentId { get; set; }
|
|||
|
public string Section { get; set; }
|
|||
|
public int? SectionId { get; set; }
|
|||
|
public string SubSection { get; set; }
|
|||
|
public int? SubSectionId { get; set; }
|
|||
|
public string Sbu { get; set; }
|
|||
|
public int? SbuId { get; set; }
|
|||
|
public string Designation { get; set; }
|
|||
|
public string Grade { get; set; }
|
|||
|
public string Religion { get; set; }
|
|||
|
public string MaritalStatus { get; set; }
|
|||
|
public string MobileNo { get; set; }
|
|||
|
public string VendorCode { get; set; }
|
|||
|
public DateTime? DateOfConfirmation { get; set; }
|
|||
|
public string NationalId { get; set; }
|
|||
|
public string PassportNo { get; set; }
|
|||
|
public string PhotoPath { get; set; }
|
|||
|
//public int? BloodGroup { get; set; }
|
|||
|
public string BloodGroup { get; set; }
|
|||
|
public int? LineManagerId { get; set; }
|
|||
|
public string LineManagerNo { get; set; }
|
|||
|
public string LineManagerName { get; set; }
|
|||
|
public string LineManagerEmail { get; set; }
|
|||
|
public string LineManagerDes { get; set; }
|
|||
|
public string LmDivision { get; set; }
|
|||
|
public int? LmDivisionId { get; set; }
|
|||
|
public string LmDepartment { get; set; }
|
|||
|
public int? LmDepartmentId { get; set; }
|
|||
|
public string LmUnit { get; set; }
|
|||
|
public int? LmUnitId { get; set; }
|
|||
|
public string LmSubUnit { get; set; }
|
|||
|
public int? LmSubUnitId { get; set; }
|
|||
|
public string EmpStatus { get; set; }
|
|||
|
public string CostCenter { get; set; }
|
|||
|
public string Nationality { get; set; }
|
|||
|
public string Bank { get; set; }
|
|||
|
public string Branch { get; set; }
|
|||
|
public string OutPayBank { get; set; }
|
|||
|
public string OutPayBranch { get; set; }
|
|||
|
public string AccountNo { get; set; }
|
|||
|
public string OutPayAccountNo { get; set; }
|
|||
|
public string deptireOne { get; set; }
|
|||
|
public string deptireTwo { get; set; }
|
|||
|
public string deptireThree { get; set; }
|
|||
|
public string deptireFour { get; set; }
|
|||
|
public string deptireFive { get; set; }
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|