add report ง
This commit is contained in:
28
Models/budget/study_material.cs
Normal file
28
Models/budget/study_material.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user