Files
rmutr_report/Models/budget/summary_of_equipment_five_year.cs
kamonwan taengsuk 7a7b12bc77 bug fixed
2023-03-14 11:52:15 +07:00

75 lines
2.8 KiB
C#

using System.Collections.Generic;
namespace rmutr_report.Models
{
public class summary_of_equipment_five_year
{
public string academic_year { get; set; }
public string budget_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_of_equipment_five_years> header_data { get; set; }
}
public class summary_of_equipment_five_years
{
public int? color { get; set; }
public string list { get; set; }
public decimal? unit_price { 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_of_equipment_five_year_detail1> data { get; set; }
}
public class summary_of_equipment_five_year_detail1
{
public int? color { get; set; }
public string faculty_name { get; set; }
public decimal? unit_price { 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_of_equipment_five_year_detail2> data { get; set; }
}
public class summary_of_equipment_five_year_detail2
{
public int? color { get; set; }
public string list { get; set; }
public decimal? unit_price { 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_of_equipment_five_year_detail3> data { get; set; }
}
public class summary_of_equipment_five_year_detail3
{ public string list { get; set; }
public string type_1 { get; set; }
public string type_2 { get; set; }
public string type_3 { get; set; }
public string unit { get; set; }
public int? quantity { get; set; }
public decimal? unit_price { 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 amount { get; set; }
public string company { get; set; }
public string description { get; set; }
}
}