add ง.6

This commit is contained in:
kamonwan taengsuk
2023-03-07 15:08:17 +07:00
parent 0f8552b855
commit ddafe4ff4f
3 changed files with 373 additions and 1 deletions

View File

@@ -61,7 +61,7 @@ namespace rmutr_report.Models
public decimal? sum_year4 { get; set; }
public decimal? sum_year5 { get; set; }
public decimal? sum_year6 { get; set; }
public string bath { get; set; }
//public string bath { get; set; }
}

View File

@@ -0,0 +1,41 @@
using System.Collections.Generic;
namespace rmutr_report.Models
{
public class calculation_excess_tuition_fee
{
public string agency { get; set; }
public string area { get; set; }
public string product { get; set; }
public string academic_year_name_th1 { get; set; }
public string academic_year_name_th2 { get; set; }
public string academic_semester_name_th1 { get; set; }
public string academic_semester_name_th2 { get; set; }
public List<calculation_excess_tuition_fee_detail> data { get; set; }
public decimal? total_1 { get; set; }
public decimal? total_2 { get; set; }
public decimal? total_3 { get; set; }
public decimal? total_4 { get; set; }
public decimal? total_5 { get; set; }
public decimal? total_6 { get; set; }
public decimal? total_7 { get; set; }
public decimal? total_8 { get; set; }
}
public class calculation_excess_tuition_fee_detail
{
public string name { get; set; }
public string position { get; set; }
public string pertype { get; set; }
public decimal? teaching_hours_workload_pertype1 { get; set; }
public decimal? teaching_hours_workload1 { get; set; }
// public decimal? difference1 { get; set; }
// public decimal? tuition_rate1 { get; set; }
public decimal? teaching_hours_workload_pertype2 { get; set; }
public decimal? teaching_hours_workload2 { get; set; }
// public decimal? difference2 { get; set; }
// public decimal? tuition_rate2 { get; set; }
//public decimal? total_budget { get; set; }
}
}