Files
rmutr_report/Models/Hr/data_line_support.cs
kamonwan taengsuk bab51f082f update
2022-05-30 17:01:21 +07:00

42 lines
2.0 KiB
C#

using System.Collections.Generic;
namespace rmutr_report.Models.Hr
{
public class data_line_support
{
public string data_date {get; set; }
public List<data_line_supports> data { get; set; }
}
public class data_line_supports
{
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_packing { get; set; }
public int? government_officer_rate { get; set; }
public int? university_staff_totalrate{ get; set; }
public int? university_staff_packing { get; set; }
public int? university_staff_rate { get; set; }
public int? government_employee_totalrate{ get; set; }
public int? government_employee_packing { get; set; }
public int? government_employee_rate { get; set; }
public int? permanent_employee_totalrate{ get; set; }
public int? permanent_employee_support_packing { get; set; }
public int? permanent_employee_support_rate { get; set; }
public int? permanent_employee_field_packing { get; set; }
public int? permanent_employee_field_rate { get; set; }
public int? temporary_worker_income_totalrate { get; set; }
public int? temporary_worker_income_support_packing { get; set; }
public int? temporary_worker_income_support_rate { get; set; }
public int? temporary_worker_income_field_packing { get; set; }
public int? temporary_worker_income_field_rate { get; set; }
public int? total_personnel_totalrate { get; set; }
public int? total_personnel_support_packing { get; set; }
public int? total_personnel_support_rate { get; set; }
public int? total_personnel_field_packing { get; set; }
public int? total_personnel_field_rate { get; set; }
public string status { get; set; }
}
}