Files
rmutr_report/Models/Hrregister/hr_position_manage.cs
kamonwan taengsuk 5f7eaefaa5 bug fixed
2022-11-08 11:57:26 +07:00

44 lines
1.6 KiB
C#

using System.Collections.Generic;
namespace rmutr_report.Models.Hrregister
{
public class hr_position_manage
{
public string academic_year_name_th { get; set; }
public string position_manage_type { get; set; }
public string position_academic_type { get; set; }
public string position_academic_profession { get; set; }
public string status { get; set; }
public string agency_name_th { get; set; }
public List<hr_position_manage_detail> data { get; set; }
public List<hr_count_position> summary { get; set; }
public string total1 { get; set; }
public string total2 { get; set; }
}
public class hr_position_manage_detail
{
public string position_manage_name { get; set; }
public decimal? position_manage_salary { get; set; }
public decimal? position_academic_salary { get; set; }
public decimal? position_profession_salary { get; set; }
public decimal? compensation { get; set; }
public string position_id { get; set; }
public string display_name_th { get; set; }
public string agency_name_th { get; set; }
public string date_office { get; set; }
public string date_term_of_ffice { get; set; }
public string appointment_date { get; set; }
public string retire_date { get; set; }
public string directive { get; set; }
public string money1 { get; set; }
public string money2 { get; set; }
}
public class hr_count_position
{
public string position_name { get; set; }
public int? count_position { get; set; }
}
}