47 lines
1.9 KiB
C#
47 lines
1.9 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace rmutr_report.Models
|
|
{
|
|
public class summary_overview_building
|
|
{
|
|
public string budget_year { get; set; }
|
|
public List<summary_overview_building_detail> data { get; set; }
|
|
}
|
|
|
|
public class summary_overview_building_detail
|
|
{
|
|
public string row_order { get; set; }
|
|
public string row_no { get; set; }
|
|
public int? topic_type { get; set; }
|
|
public string topic { get; set; }
|
|
public string province { get; set; }
|
|
public decimal? quantity { get; set; }
|
|
public string unit { get; set; }
|
|
public decimal? unit_price { get; set; }
|
|
public decimal? request_amount { get; set; }
|
|
public decimal? offer_amount { get; set; }
|
|
public string remark { get; set; }
|
|
public string assembly_details { get; set; }
|
|
public decimal? usable_area { get; set; }
|
|
public decimal? construction_period { get; set; }
|
|
public decimal? quantity_period_work { get; set; }
|
|
public bool? readiness_action_1 { get; set; }
|
|
public bool? readiness_action_2 { get; set; }
|
|
public bool? readiness_action_3 { get; set; }
|
|
public bool? readiness_action_4 { get; set; }
|
|
public bool? appearance_equipment_1 { get; set; }
|
|
public bool? appearance_equipment_2 { get; set; }
|
|
public bool? appearance_equipment_3 { get; set; }
|
|
public string education_type { get; set; }
|
|
public string budget_location_name_th { get; set; }
|
|
public string faculty_name_th { get; set; }
|
|
//
|
|
public string readiness_action1 { get; set; }
|
|
public string readiness_action2 { get; set; }
|
|
public string readiness_action3 { get; set; }
|
|
public string readiness_action4 { get; set; }
|
|
public string appearance_equipment1 { get; set; }
|
|
public string appearance_equipment2 { get; set; }
|
|
public string appearance_equipment3 { get; set; }
|
|
}
|
|
} |