41 lines
1.6 KiB
C#
41 lines
1.6 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 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; }
|
|
}
|
|
} |