add report
This commit is contained in:
23
Models/budget/repair_cost.cs
Normal file
23
Models/budget/repair_cost.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models
|
||||
{
|
||||
public class repair_cost
|
||||
{
|
||||
public string budget_year { get; set; }
|
||||
public string plan { get; set; }
|
||||
public string product { get; set; }
|
||||
public string agency { get; set; }
|
||||
public string area { get; set; }
|
||||
public List<repair_cost_detail> data { get; set; }
|
||||
}
|
||||
|
||||
public class repair_cost_detail
|
||||
{
|
||||
public string no { get; set; }
|
||||
public string type_vehicle_transport { get; set; }
|
||||
public decimal? quantity { get; set; }
|
||||
public decimal? repair_rate { get; set; }
|
||||
public decimal? amount { get; set; }
|
||||
}
|
||||
}
|
||||
21
Models/budget/student_news.cs
Normal file
21
Models/budget/student_news.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models
|
||||
{
|
||||
public class student_news_faculty
|
||||
{
|
||||
public string academic_year_name_th { get; set; }
|
||||
public string curriculum_name_th { get; set; }
|
||||
public List<student_news_faculty_detail> data { get; set; }
|
||||
//public string faculty_academy_name_th { get; set; }
|
||||
}
|
||||
|
||||
public class student_news_faculty_detail
|
||||
{
|
||||
public string faculty_academy_name_th { get; set; }
|
||||
public decimal? bachelors_degree { get; set; }
|
||||
public decimal? sum_percentage { get; set; }
|
||||
public decimal? total1 { get; set; }
|
||||
public decimal? total2 { get; set; }
|
||||
}
|
||||
}
|
||||
29
Models/budget/student_news_area.cs
Normal file
29
Models/budget/student_news_area.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models
|
||||
{
|
||||
public class student_news_area
|
||||
{
|
||||
public string academic_year_name_th { get; set; }
|
||||
public string curriculum_name_th { get; set; }
|
||||
public List<student_news_area_detail> data { get; set; }
|
||||
}
|
||||
|
||||
public class student_news_area_detail
|
||||
{
|
||||
public string area_name_th { get; set; }
|
||||
public string faculty_academy_name_th { get; set; }
|
||||
|
||||
public decimal? bachelors_degree_science { get; set; }
|
||||
public decimal? bachelors_degree_social { get; set; }
|
||||
public decimal? bachelors_degree_total { get; set; }
|
||||
public decimal? sum_percentage_science { get; set; }
|
||||
public decimal? sum_percentage_social { get; set; }
|
||||
public decimal? total1 { get; set; }
|
||||
public decimal? total2 { get; set; }
|
||||
public decimal? total3 { get; set; }
|
||||
public decimal? total4 { get; set; }
|
||||
public decimal? total5 { get; set; }
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user