This commit is contained in:
kamonwan taengsuk
2022-05-30 13:31:32 +07:00
parent 507b06dd4c
commit 39e455bd0e
45 changed files with 7588 additions and 0 deletions

37
Models/Hr/man_power.cs Normal file
View File

@@ -0,0 +1,37 @@
namespace rmutr_report.Models.Hr
{
public class man_power
{
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_land_totalrate { get; set; }
public int? temporary_worker_land_packing { get; set; }
public int? temporary_worker_land_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; }
}
}