Files
rmutr_report/Models/budget/summary_building_construction.cs
kamonwan taengsuk 905360683d bug fixed
2023-03-23 09:19:59 +07:00

82 lines
3.0 KiB
C#

using System.Collections.Generic;
namespace rmutr_report.Models
{
public class summary_building_construction
{
public string academic_year_name_th { get; set; }
//public string header_name { get; set; }
// public string agency_name_th { get; set; }
// public string location { get; set; }
public string academic_year { get; set; }
public string budget_year_1 { get; set; }
public string budget_year_2 { get; set; }
public string budget_year_3 { get; set; }
public string budget_year_4 { get; set; }
public string budget_year_5 { get; set; }
public List<summary_building_constructions> header_data { get; set; }
}
public class summary_building_constructions{
public int? color { get; set; }
public string list { get; set; }
public decimal? budget { get; set; }
public decimal? price_1 { get; set; }
public decimal? price_2 { get; set; }
public decimal? price_3 { get; set; }
public decimal? price_4 { get; set; }
public decimal? price_5 { get; set; }
public List<summary_building_construction_detail1> data { get; set; }
}
public class summary_building_construction_detail1
{
public int? color { get; set; }
public string faculty_name { get; set; }
public decimal? budget { get; set; }
public decimal? price_1 { get; set; }
public decimal? price_2 { get; set; }
public decimal? price_3 { get; set; }
public decimal? price_4 { get; set; }
public decimal? price_5 { get; set; }
public List<summary_building_construction_detail2> data { get; set; }
}
public class summary_building_construction_detail2
{
public int? color { get; set; }
public string list { get; set; }
public decimal? budget { get; set; }
public decimal? price_1 { get; set; }
public decimal? price_2 { get; set; }
public decimal? price_3 { get; set; }
public decimal? price_4 { get; set; }
public decimal? price_5 { get; set; }
public List<summary_building_construction_detail3> data { get; set; }
}
public class summary_building_construction_detail3
{
public int? color { get; set; }
public string list { get; set; }
public decimal? total { get; set; }
public string lesser { get; set; }
public string between { get; set; }
public string over { get; set; }
public string problem { get; set; }
public string type_1 { get; set; }
public string type_2 { get; set; }
public string renovated { get; set; }
public decimal? budget { get; set; }
public decimal? price_1 { get; set; }
public decimal? price_2 { get; set; }
public decimal? price_3 { get; set; }
public decimal? price_4 { get; set; }
public decimal? price_5 { get; set; }
public string boq { get; set; }
public string image { get; set; }
public string description { get; set; }
}
}