This commit is contained in:
kamonwan taengsuk
2023-06-13 19:06:09 +07:00
parent bddfeac821
commit 640d2fae45
10 changed files with 554 additions and 42 deletions

View File

@@ -10,22 +10,22 @@ namespace rmutr_report.Models.Personnel
public Guid? personnel_salary_government_employee_root_uid { get; set; }
public Guid? log_report_uid { get; set; }
public string year { get; set; }
public int? total_salary { get; set; }
public int? total_estimate_salary { get; set; }
public int? total_promote { get; set; }
public int? total { get; set; }
public int? total_salary_12 { get; set; }
public int? total_social_security { get; set; }
public int? total_social_security_12 { get; set; }
public int? total_social_compensation { get; set; }
public int? total_social_compensation_12 { get; set; }
public int? total_another2 { get; set; }
public int? total_quantity_money { get; set; }
public int? total2 { get; set; }
public double? total_salary { get; set; }
public double? total_estimate_salary { get; set; }
public double? total_promote { get; set; }
public double? total { get; set; }
public double? total_salary_12 { get; set; }
public double? total_social_security { get; set; }
public double? total_social_security_12 { get; set; }
public double? total_social_compensation { get; set; }
public double? total_social_compensation_12 { get; set; }
public double? total_another2 { get; set; }
public double? total_quantity_money { get; set; }
public double? total2 { get; set; }
public int? including_salary_and_fittings { get; set; }
public int? including_salary_and_fittings_12 { get; set; }
public double? including_salary_and_fittings { get; set; }
public double? including_salary_and_fittings_12 { get; set; }
public List<t_personnel_salary_government_employee> personnel_salary_government_employee { get; set; }
}
@@ -37,20 +37,20 @@ namespace rmutr_report.Models.Personnel
public Guid? personnel_salary_government_employee_root_uid { get; set; }
public string agency_category_name { get; set; }
public int? total_salary { get; set; }
public int? total_estimate_salary { get; set; }
public int? total_promote { get; set; }
public int? total { get; set; }
public int? total_salary_12 { get; set; }
public int? total_social_security { get; set; }
public int? total_social_security_12 { get; set; }
public int? total_social_compensation { get; set; }
public int? total_social_compensation_12 { get; set; }
public int? total_another2 { get; set; }
public int? total_quantity_money { get; set; }
public int? total2 { get; set; }
public int? including_salary_and_fittings { get; set; }
public int? including_salary_and_fittings_12 { get; set; }
public double? total_salary { get; set; }
public double? total_estimate_salary { get; set; }
public double? total_promote { get; set; }
public double? total { get; set; }
public double? total_salary_12 { get; set; }
public double? total_social_security { get; set; }
public double? total_social_security_12 { get; set; }
public double? total_social_compensation { get; set; }
public double? total_social_compensation_12 { get; set; }
public double? total_another2 { get; set; }
public double? total_quantity_money { get; set; }
public double? total2 { get; set; }
public double? including_salary_and_fittings { get; set; }
public double? including_salary_and_fittings_12 { get; set; }
public List<t_personnel_salary_government_employee_deltail> personnel_salary_government_employee_deltail { get; set; }
public bool? is_footer { get; set; }
@@ -68,19 +68,19 @@ namespace rmutr_report.Models.Personnel
public string position { get; set; }
public string parent_agency_name { get; set; }
public string area { get; set; }
public int? salary { get; set; }
public int? estimate_salary { get; set; }
public int? promote { get; set; }
public int? total { get; set; }
public int? salary_12 { get; set; }
public int? social_security { get; set; }
public int? social_security_12 { get; set; }
public int? social_compensation { get; set; }
public int? social_compensation_12 { get; set; }
public int? another2 { get; set; }
public int? quantity_money { get; set; }
public int? total2 { get; set; }
public int? including_salary_and_fittings { get; set; }
public int? including_salary_and_fittings_12 { get; set; }
public double? salary { get; set; }
public double? estimate_salary { get; set; }
public double? promote { get; set; }
public double? total { get; set; }
public double? salary_12 { get; set; }
public double? social_security { get; set; }
public double? social_security_12 { get; set; }
public double? social_compensation { get; set; }
public double? social_compensation_12 { get; set; }
public double? another2 { get; set; }
public double? quantity_money { get; set; }
public double? total2 { get; set; }
public double? including_salary_and_fittings { get; set; }
public double? including_salary_and_fittings_12 { get; set; }
}
}