Files
rmutr_report/Models/budget/study_material.cs
kamonwan taengsuk 5942f73550
All checks were successful
continuous-integration/drone/push Build is passing
bug fixed
2023-12-13 14:30:49 +07:00

48 lines
1.6 KiB
C#

using System.Collections.Generic;
namespace rmutr_report.Models
{
public class study_material
{
public string budget_year { get; set; }
public string product { get; set; }
public string faculty { get; set; }
public List<study_material_detail1> data1 { get; set; }
public decimal? total_cost_science { get; set; }
public decimal? total_cost_social { get; set; }
}
public class study_material_detail1
{
public string academic_semester { get; set; }
public string academic_year { get; set; }
public string year_class { get; set; }
public string code { get; set; }
public List<study_material_detail2> data2 { get; set; }
}
public class study_material_detail2
{
public string year_class { get; set; }
public string code { get; set; }
public decimal? total_cost_science { get; set; }
public decimal? total_cost_social { get; set; }
public List<study_material_detail3> data3 { get; set; }
}
public class study_material_detail3
{
public string academic_semester { get; set; }
public string student { get; set; }
public decimal? salaya { get; set; }
public decimal? bophitphimuk { get; set; }
public decimal? pohchang { get; set; }
public decimal? klai_kangwon { get; set; }
public decimal? sum_science { get; set; }
public decimal? sum_social { get; set; }
public decimal? cost_science { get; set; }
public decimal? cost_social { get; set; }
}
}