This commit is contained in:
kamonwan taengsuk
2022-05-30 17:01:21 +07:00
parent 39e455bd0e
commit bab51f082f
10 changed files with 1483 additions and 6 deletions

View File

@@ -0,0 +1,34 @@
using System.Collections.Generic;
namespace rmutr_report.Models.Hr
{
public class data_line_academic
{
public string data_date {get; set; }
public List<data_line_academics> data { get; set; }
}
public class data_line_academics
{
public string no { get; set; }
public string agency_name { get; set; }
public int? rate { get; set; }
public int? government_officer_totalrate { get; set; }
public int? government_officer_notfree { get; set; }
public int? government_officer_free{ get; set; }
public int? university_staff_totalrate { get; set; }
public int? university_staff_notfree { get; set; }
public int? university_staff_scholarship { get; set; }
public int? university_staff_free { get; set; }
public int? temporary_worker_land_totalrate { get; set; }
public int? temporary_worker_land_notfree { get; set; }
public int? temporary_worker_land_free { get; set; }
public int? temporary_worker_income_totalrate { get; set; }
public int? temporary_worker_income_notfree { get; set; }
public int? temporary_worker_income_free { get; set; }
public int? total_totalrate { get; set; }
public int? total_notfree { get; set; }
public int? total_scholarship { get; set; }
public int? total_free { get; set; }
public string note { get; set; }
}
}