35 lines
1.0 KiB
C#
35 lines
1.0 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using HRM.BO;
|
|||
|
|
|||
|
namespace HRM.UI.MODELS
|
|||
|
{
|
|||
|
public class OTPreApprovalTModel : AuditTrailBase
|
|||
|
{
|
|||
|
public OTPreApprovalTModel()
|
|||
|
{
|
|||
|
EmployeeNo = string.Empty;
|
|||
|
EmployeeName = string.Empty;
|
|||
|
PreApproveDate = DateTime.MinValue;
|
|||
|
FromTime = DateTime.MinValue;
|
|||
|
ToTime = DateTime.MinValue;
|
|||
|
Reason = string.Empty;
|
|||
|
PreApprovalDescription = string.Empty;
|
|||
|
}
|
|||
|
|
|||
|
public int PKID { get; set; }
|
|||
|
public int EmployeeID { get; set; }
|
|||
|
public string EmployeeNo { get; set; }
|
|||
|
public string EmployeeName { get; set; }
|
|||
|
public DateTime PreApproveDate { get; set; }
|
|||
|
public double OTHours { get; set; }
|
|||
|
public double LMOTHours { get; set; }
|
|||
|
public EnumWFAttnStatus WFStatus { get; set; }
|
|||
|
public DateTime FromTime { get; set; }
|
|||
|
public DateTime ToTime { get; set; }
|
|||
|
public string Reason { get; set; }
|
|||
|
public int LMID { get; set; }
|
|||
|
public string PreApprovalDescription { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|