Files
rmutr_report/Models/budget/calculation_excess_tuition_fee.cs
kamonwan taengsuk 4022335661 bug fixed
2023-03-14 16:33:39 +07:00

34 lines
1.3 KiB
C#

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 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? diff_teach1 { get; set; }
public decimal? teach_rate_1 { get; set; }
public decimal? teaching_hours_workload_pertype2 { get; set; }
public decimal? teaching_hours_workload2 { get; set; }
public decimal? diff_teach2 { get; set; }
public decimal? teach_rate_2 { get; set; }
//public decimal? total_budget { get; set; }
}
}