update
This commit is contained in:
37
Models/Hr/man_power.cs
Normal file
37
Models/Hr/man_power.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
44
Models/Hr/personnel_summary.cs
Normal file
44
Models/Hr/personnel_summary.cs
Normal file
@@ -0,0 +1,44 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models.Hr
|
||||
{
|
||||
public class personnel_summary
|
||||
{
|
||||
public string data_date {get; set; }
|
||||
public int? total_pertype {get; set; }
|
||||
public List<personnel_type> personnel_types {get; set; }
|
||||
public List<lineofwork> lineofworks {get; set; }
|
||||
public List<position> positions {get; set; }
|
||||
public List<area> areas {get; set; }
|
||||
public List<qualification> qualifications {get; set; }
|
||||
}
|
||||
|
||||
public class personnel_type
|
||||
{
|
||||
public string type_name { get; set; }
|
||||
public int? count { get; set; }
|
||||
}
|
||||
|
||||
public class lineofwork
|
||||
{
|
||||
public string work_name { get; set; }
|
||||
public int? count { get; set; }
|
||||
}
|
||||
public class position
|
||||
{
|
||||
public string position_name { get; set; }
|
||||
public int? count { get; set; }
|
||||
}
|
||||
|
||||
public class area
|
||||
{
|
||||
public string area_name { get; set; }
|
||||
public int? count { get; set; }
|
||||
}
|
||||
|
||||
public class qualification
|
||||
{
|
||||
public string qualification_name { get; set; }
|
||||
public int? count { get; set; }
|
||||
}
|
||||
}
|
||||
8
Models/Setting.cs
Normal file
8
Models/Setting.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace rmutr_report.Models
|
||||
{
|
||||
public class Setting
|
||||
{
|
||||
public string report_path { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user