67 lines
2.8 KiB
C#
67 lines
2.8 KiB
C#
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; }
|
|
}
|
|
} |