Files
rmutr_report/Models/RoReport/teaching_fee_ro_three.cs
kamonwan taengsuk 7206c9858e
All checks were successful
continuous-integration/drone/push Build is passing
bug fixed
2023-11-29 16:10:30 +07:00

45 lines
1.9 KiB
C#

using System.Collections.Generic;
namespace rmutr_report.Models.RoThree
{
public class teaching_fee_ro_three
{
public string budget_year { get; set; }
public string date_range { get; set; }
public string product { get; set; }
public string semester { get; set; }
public string academic_year { get; set; }
public string agency_name_th { get; set; }
public string sector { get; set; }
public string disbursement_result_year { get; set; }
public string disbursement_result_semester { get; set; }
public List<teaching_fee_ro_three_data> data { get; set; }
public decimal? table_1_ba_1 { get; set; }
public decimal? table_1_ma_1 { get; set; }
public decimal? table_1_ba_2 { get; set; }
public decimal? table_1_ma_2 { get; set; }
public decimal? table_1_ba_3 { get; set; }
public decimal? table_1_ma_3 { get; set; }
public decimal? table_1_teaching_fee_1 { get; set; }
public decimal? table_1_teaching_fee_2 { get; set; }
public decimal? table_1_total { get; set; }
}
public class teaching_fee_ro_three_data
{
public string display_name { get; set; }
public string subject_name_th { get; set; }
public string position { get; set; }
public decimal? disbursement_result { get; set; }
public decimal? number_of_hours_ba_1 { get; set; }
public decimal? number_of_hours_ma_1 { get; set; }
public decimal? number_of_hours_ba_2 { get; set; }
public decimal? number_of_hours_ma_2 { get; set; }
public decimal? number_of_hours_ba_3 { get; set; }
public decimal? number_of_hours_ma_3 { get; set; }
public decimal? teaching_fee_1 { get; set; }
public decimal? teaching_fee_2 { get; set; }
public decimal? total { get; set; }
}
}