add report, fonts
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
kamonwan taengsuk
2023-08-16 18:04:03 +07:00
parent e5e9e6614b
commit 36bf183c4a
19 changed files with 1413 additions and 201 deletions

View File

@@ -0,0 +1,67 @@
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace rmutr_report.Models
{
public class summary_demand_status_equipment
{
public string budget_year { get; set; }
public string request_assets_year_1 { get; set; }
public string request_assets_year_2 { get; set; }
public string request_assets_year_3 { get; set; }
public List<summary_demand_status_equipment_detail> data { get; set; }
}
public class summary_demand_status_equipment_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 decimal? request_assets_year_1 { get; set; }
public decimal? request_assets_year_2 { get; set; }
public decimal? request_assets_year_3 { get; set; }
public decimal? asset_available_amount { get; set; }
public decimal? asset_broken_amount { get; set; }
public decimal? not_available { get; set; }
public decimal? average_service_life { get; set; }
public string unit { get; set; }
public decimal? unit_price { get; set; }
public decimal? replacement_original { get; set; }
public decimal? increase_efficiency { get; set; }
public decimal? building { get; set; }
public decimal? total_amount { get; set; }
public decimal? request_amount { get; set; }
public decimal? offer_amount { get; set; }
public string remark { get; set; }
public bool? conform_1 { get; set; }
public bool? conform_2 { get; set; }
public bool? conform_3 { get; set; }
public bool? standard_price_1 { get; set; }
public bool? standard_price_2 { get; set; }
public bool? standard_price_3 { get; set; }
[Column(TypeName = "decimal(18,4)")] public decimal? limit_price_1 { get; set; }
[Column(TypeName = "decimal(18,4)")] public decimal? limit_price_2 { get; set; }
[Column(TypeName = "decimal(18,4)")] public decimal? limit_price_3 { get; set; }
public bool? unique_feature_1 { get; set; }
public bool? unique_feature_2 { get; set; }
public bool? unique_feature_3 { get; set; }
public string budget_location_name_th { get; set; }
public string faculty_name_th { get; set; }
//
public string conform1 { get; set; }
public string conform2 { get; set; }
public string conform3 { get; set; }
public string standard_price1 { get; set; }
public string standard_price2 { get; set; }
public string standard_price3 { get; set; }
public string unique_feature1 { get; set; }
public string unique_feature2 { get; set; }
public string unique_feature3 { get; set; }
}
}

View File

@@ -0,0 +1,47 @@
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; }
}
}