add report
This commit is contained in:
71
Models/budget/summary_excess_tuitionfee.cs
Normal file
71
Models/budget/summary_excess_tuitionfee.cs
Normal file
@@ -0,0 +1,71 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models
|
||||
{
|
||||
public class summary_excess_tuitionfee
|
||||
{
|
||||
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<summary_excess_tuitionfee_detail> data { get; set; }
|
||||
//public List<summary_excess_tuitionfee_detail2> data_detail { get; set; }
|
||||
|
||||
public decimal? pertype1 { get; set; }
|
||||
public decimal? teaching_hours_workload1 { get; set; }
|
||||
public decimal? tuition_rate1 { get; set; }
|
||||
public decimal? amount1 { get; set; }
|
||||
public decimal? pertype2 { get; set; }
|
||||
public decimal? teaching_hours_workload2 { get; set; }
|
||||
public decimal? tuition_rate2 { get; set; }
|
||||
public decimal? amount2 { get; set; }
|
||||
public decimal? total_amount { get; set; }
|
||||
}
|
||||
|
||||
|
||||
public class summary_excess_tuitionfee_detail
|
||||
{
|
||||
public string faculty { get; set; }
|
||||
public decimal? pertype1 { get; set; }
|
||||
public decimal? teaching_hours_workload1 { get; set; }
|
||||
public decimal? tuition_rate1 { get; set; }
|
||||
public decimal? amount1 { get; set; }
|
||||
public decimal? pertype2 { get; set; }
|
||||
public decimal? teaching_hours_workload2 { get; set; }
|
||||
public decimal? tuition_rate2 { get; set; }
|
||||
public decimal? amount2 { get; set; }
|
||||
public decimal? total_amount { get; set; }
|
||||
public string remark { get; set; }
|
||||
public List<summary_excess_tuitionfee_detail2> data_detail { get; set; }
|
||||
public List<summary_excess_tuitionfee_details> data1 { get; set; }
|
||||
|
||||
|
||||
}
|
||||
public class summary_excess_tuitionfee_detail2{
|
||||
public string sub_name { get; set; }
|
||||
public decimal? pertype1 { get; set; }
|
||||
public decimal? teaching_hours_workload1 { get; set; }
|
||||
public decimal? tuition_rate1 { get; set; }
|
||||
public decimal? amount1 { get; set; }
|
||||
public decimal? pertype2 { get; set; }
|
||||
public decimal? teaching_hours_workload2 { get; set; }
|
||||
public decimal? tuition_rate2 { get; set; }
|
||||
public decimal? amount2 { get; set; }
|
||||
public decimal? total_amount { get; set; }
|
||||
public string remark { get; set; }
|
||||
}
|
||||
public class summary_excess_tuitionfee_details
|
||||
{
|
||||
public string faculty { get; set; }
|
||||
public decimal? pertype1 { get; set; }
|
||||
public decimal? teaching_hours_workload1 { get; set; }
|
||||
public decimal? tuition_rate1 { get; set; }
|
||||
public decimal? amount1 { get; set; }
|
||||
public decimal? pertype2 { get; set; }
|
||||
public decimal? teaching_hours_workload2 { get; set; }
|
||||
public decimal? tuition_rate2 { get; set; }
|
||||
public decimal? amount2 { get; set; }
|
||||
public decimal? total_amount { get; set; }
|
||||
public string remark { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user