add report ง

This commit is contained in:
kamonwan taengsuk
2023-01-24 14:20:21 +07:00
parent aa7e0381b4
commit d6b31e50bb
4 changed files with 605 additions and 79 deletions

View File

@@ -0,0 +1,28 @@
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 string salaya { get; set; }
public string bophitphimuk { get; set; }
public string pohchang { get; set; }
public string 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; }
}
}