28 lines
943 B
C#
28 lines
943 B
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_detail> data { get; set; }
|
|
}
|
|
|
|
public class study_material_detail
|
|
{
|
|
public string academic_semester { get; set; }
|
|
public string student { get; set; }
|
|
// public string code { get; set; }
|
|
// public string major { 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; }
|
|
}
|
|
} |