EchoTex_Payroll/HRM.BO/ERecruitment/ErCVSort.cs
2024-10-14 10:01:49 +06:00

28 lines
515 B
C#

using Ease.Core.Model;
using System;
using System.Collections.Generic;
using System.Data;
namespace HRM.BO
{
public class ErCVSort : AuditTrailBase
{
#region Constructor
public ErCVSort()
{
}
#endregion
#region Properties
public int EmployeeID { get; set; }
public int RequisitionID { get; set; }
public DateTime AssignDateTime { get; set; }
public EnumWFCvSortStatus WfStatus { get; set; }
#endregion
}
}