add report
This commit is contained in:
68
Models/budget/expenditure_budget_proposal.cs
Normal file
68
Models/budget/expenditure_budget_proposal.cs
Normal file
@@ -0,0 +1,68 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models
|
||||
{
|
||||
public class expenditure_budget_proposal
|
||||
{
|
||||
public string budget_year { get; set; }
|
||||
// public decimal? budget_amount { get; set; }
|
||||
// public decimal? total_amount_1 { get; set; }
|
||||
// public decimal? total_amount_2 { get; set; }
|
||||
public List<group_headers> group_header { get; set; }
|
||||
|
||||
}
|
||||
|
||||
public class group_headers
|
||||
{
|
||||
public string list_1 { get; set; }
|
||||
public string list_2 { get; set; }
|
||||
public string rowno { get; set; }
|
||||
public string list_3 { get; set; }
|
||||
public decimal? budget_amount { get; set; }
|
||||
public decimal? total_amount_1 { get; set; }
|
||||
public decimal? total_amount_2 { get; set; }
|
||||
public List<expenditure_budget_proposal_headers> header { get; set; }
|
||||
|
||||
}
|
||||
|
||||
public class expenditure_budget_proposal_headers
|
||||
{
|
||||
public string rowno { get; set; }
|
||||
public string header { get; set; }
|
||||
public decimal? budget_amount { get; set; }
|
||||
public List<expenditure_budget_proposal_headers2> data { get; set; }
|
||||
|
||||
|
||||
}
|
||||
|
||||
public class expenditure_budget_proposal_headers2
|
||||
{
|
||||
public string list { get; set; }
|
||||
public decimal? target_group_count { get; set; }
|
||||
public string target_group_unit { get; set; }
|
||||
public decimal? time_count { get; set; }
|
||||
public string time_unit { get; set; }
|
||||
public decimal? budget_count { get; set; }
|
||||
public string budget_unit { get; set; }
|
||||
public decimal? quantity { get; set; }
|
||||
public string quantity_unit { get; set; }
|
||||
public decimal? budget_amount { get; set; }
|
||||
public List<expenditure_budget_proposal_headers3> data2 { get; set; }
|
||||
|
||||
|
||||
}
|
||||
|
||||
public class expenditure_budget_proposal_headers3
|
||||
{
|
||||
public string list { get; set; }
|
||||
public decimal? target_group_count { get; set; }
|
||||
public string target_group_unit { get; set; }
|
||||
public decimal? time_count { get; set; }
|
||||
public string time_unit { get; set; }
|
||||
public decimal? budget_count { get; set; }
|
||||
public string budget_unit { get; set; }
|
||||
public decimal? quantity { get; set; }
|
||||
public string quantity_unit { get; set; }
|
||||
public decimal? budget_amount { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user