This commit is contained in:
25
Models/budget/investment_budget_summary.cs
Normal file
25
Models/budget/investment_budget_summary.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models
|
||||
{
|
||||
public class investment_budget_summary
|
||||
{
|
||||
public string budget_year { get; set; }
|
||||
// public decimal? total_request_count_item { get; set; }
|
||||
// public decimal? total_request_amount { get; set; }
|
||||
// public decimal? total_offer_count_item { get; set; }
|
||||
// public decimal? total_offer_amount { get; set; }
|
||||
public List<investment_budget_summary_detail> data { get; set; }
|
||||
}
|
||||
|
||||
public class investment_budget_summary_detail
|
||||
{
|
||||
public int? topic_type { get; set; }
|
||||
public string row_no { get; set; }
|
||||
public string topic { get; set; }
|
||||
public decimal? request_count_item { get; set; }
|
||||
public decimal? request_amount { get; set; }
|
||||
public decimal? offer_count_item { get; set; }
|
||||
public decimal? offer_amount { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user