Files
rmutr_report/Models/Hr/postponement_compensation.cs
kamonwan taengsuk cb9742c514 add field
2022-12-12 13:06:21 +07:00

41 lines
1.6 KiB
C#

using System.Collections.Generic;
namespace rmutr_report.Models.Hr
{
public class postponement_compensation
{
public string data_date { get; set; }
public string start_date { get; set; }
public string end_date { get; set; }
public string display_name { get; set; }
public string position_name { get; set; }
public string work_group { get; set; }
public string agency_name { get; set; }
public bool? get_promoted { get; set; }
public bool? not_get_promoted { get; set; }
public string reason { get; set; }
public string image_signature { get; set; }
public string director_display_name { get; set; }
public string director_position_name { get; set; }
public string director_position_level_name { get; set; }
public string director_date { get; set; }
public string base_calculation_date { get; set; }
public List<postponement_compensation_detail> data { get; set; }
public string check_get_promoted { get; set; }
public string check_not_get_promoted { get; set; }
public string money1 { get; set; }
public string money2 { get; set; }
public string money3 { get; set; }
public string percentage { get; set; }
}
public class postponement_compensation_detail
{
public decimal? base_calculation { get; set; }
public decimal? percentage { get; set; }
public decimal? compensation_slide { get; set; }
public decimal? compensation_receive { get; set; }
public string assessment_level { get; set; }
}
}