58 lines
2.9 KiB
C#
58 lines
2.9 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace rmutr_report.Models.Hr
|
|
{
|
|
public class academic_position
|
|
{
|
|
public string data_date {get; set; }
|
|
public List<academic_positions> data { get; set; }
|
|
public int? total1_not_two_agency { get; set; }
|
|
public int? total2_not_two_agency { get; set; }
|
|
public int? total3_not_two_agency { get; set; }
|
|
public int? total4_not_two_agency { get; set; }
|
|
public int? total5_not_two_agency { get; set; }
|
|
public int? total6_not_two_agency { get; set; }
|
|
public int? total7_not_two_agency { get; set; }
|
|
public int? total8_not_two_agency { get; set; }
|
|
public int? total9_not_two_agency { get; set; }
|
|
public int? total10_not_two_agency { get; set; }
|
|
public int? total11_not_two_agency { get; set; }
|
|
public int? total12_not_two_agency { get; set; }
|
|
public int? total13_not_two_agency { get; set; }
|
|
public int? total14_not_two_agency { get; set; }
|
|
public int? total15_not_two_agency { get; set; }
|
|
public int? total16_not_two_agency { get; set; }
|
|
public int? total17_not_two_agency { get; set; }
|
|
public int? total18_not_two_agency { get; set; }
|
|
public int? total19_not_two_agency { get; set; }
|
|
public int? total20_not_two_agency { get; set; }
|
|
public int? total21_not_two_agency { get; set; }
|
|
}
|
|
|
|
public class academic_positions
|
|
{
|
|
public string no { get; set; }
|
|
public string agency_name { get; set; }
|
|
public int? government_officer_professor { get; set; }
|
|
public int? government_officer_associate_professor { get; set; }
|
|
public int? government_officer_assistant_professor { get; set; }
|
|
public int? government_officer_teacher { get; set; }
|
|
public int? university_staff_professor { get; set; }
|
|
public int? university_staff_associate_professor { get; set; }
|
|
public int? university_staff_assistant_professor { get; set; }
|
|
public int? university_staff_teacher { get; set; }
|
|
public int? temporary_worker_land_professor { get; set; }
|
|
public int? temporary_worker_land_associate_professor{ get; set; }
|
|
public int? temporary_worker_land_assistant_professor { get; set; }
|
|
public int? temporary_worker_land_teacher { get; set; }
|
|
public int? temporary_worker_income_professor{ get; set; }
|
|
public int? temporary_worker_income_associate_professor { get; set; }
|
|
public int? temporary_worker_income_assistant_professor { get; set; }
|
|
public int? temporary_worker_income_teacher { get; set; }
|
|
public int? total_professor { get; set; }
|
|
public int? total_associate_professor { get; set; }
|
|
public int? total_assistant_professor { get; set; }
|
|
public int? total_teacher { get; set; }
|
|
public int? total_all { get; set; }
|
|
}
|
|
} |