Files
rmutr_report/Models/Hrregister/hr_position_manage.cs
kamonwan taengsuk a9f0f94392 update
2022-11-07 18:34:41 +07:00

45 lines
1.7 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 string text { 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; }
}
}