add hr report

This commit is contained in:
kamonwan taengsuk
2022-12-11 12:26:57 +07:00
parent 31a036e637
commit f56408a9b2
4 changed files with 332 additions and 22 deletions

View File

@@ -0,0 +1,39 @@
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; }
}
}