49 lines
2.2 KiB
C#
49 lines
2.2 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace rmutr_report.Models.Hr
|
|
{
|
|
public class qualifications_teacher
|
|
{
|
|
public string data_date {get; set; }
|
|
public List<qualifications_teachers> 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 class qualifications_teachers
|
|
{
|
|
public string no { get; set; }
|
|
public string agency_name { get; set; }
|
|
public int? government_officer_dr { get; set; }
|
|
public int? government_officer_master{ get; set; }
|
|
public int? government_officer_bachelor { get; set; }
|
|
public int? university_staff_dr { get; set; }
|
|
public int? university_staff_master { get; set; }
|
|
public int? university_staff_bachelor { get; set; }
|
|
public int? temporary_worker_land_dr { get; set; }
|
|
public int? temporary_worker_land_master{ get; set; }
|
|
public int? temporary_worker_land_bachelor { get; set; }
|
|
public int? temporary_worker_income_dr { get; set; }
|
|
public int? temporary_worker_income_master { get; set; }
|
|
public int? temporary_worker_income_bachelor { get; set; }
|
|
public int? total_dr { get; set; }
|
|
public int? total_master { get; set; }
|
|
public int? total_bachelor { get; set; }
|
|
public int? total_all { get; set; }
|
|
}
|
|
} |