25 lines
905 B
C#
25 lines
905 B
C#
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; }
|
|
}
|
|
} |