39 lines
1.5 KiB
C#
39 lines
1.5 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 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; }
|
|
}
|
|
|
|
} |