This commit is contained in:
56
Models/budget/estimate_income_expenses.cs
Normal file
56
Models/budget/estimate_income_expenses.cs
Normal file
@@ -0,0 +1,56 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models
|
||||
{
|
||||
public class estimate_income_expenses
|
||||
{
|
||||
public string budget_year { get; set; }
|
||||
public string date_range { get; set; }
|
||||
public string faculty { get; set; }
|
||||
public List<estimate_income_expenses_detail> data_1 { get; set; }
|
||||
}
|
||||
|
||||
public class estimate_income_expenses_detail
|
||||
{
|
||||
public string list { get; set; }
|
||||
public decimal? amount_1 { get; set; }
|
||||
public decimal? amount_2 { get; set; }
|
||||
public decimal? amount_3 { get; set; }
|
||||
public decimal? amount_4 { get; set; }
|
||||
public decimal? amount_5 { get; set; }
|
||||
public decimal? amount_6 { get; set; }
|
||||
public decimal? amount_7 { get; set; }
|
||||
public decimal? amount_8 { get; set; }
|
||||
public decimal? total_amount { get; set; }
|
||||
public List<estimate_income_expenses_detail2> data_2 { get; set; }
|
||||
}
|
||||
public class estimate_income_expenses_detail2
|
||||
{
|
||||
public int? row { get; set; }
|
||||
public string type { get; set; }
|
||||
public string list { get; set; }
|
||||
public decimal? amount_1 { get; set; }
|
||||
public decimal? amount_2 { get; set; }
|
||||
public decimal? amount_3 { get; set; }
|
||||
public decimal? amount_4 { get; set; }
|
||||
public decimal? amount_5 { get; set; }
|
||||
public decimal? amount_6 { get; set; }
|
||||
public decimal? amount_7 { get; set; }
|
||||
public decimal? amount_8 { get; set; }
|
||||
public decimal? total_amount { get; set; }
|
||||
//public List<estimate_income_expenses_detail3> data_3 { get; set; }
|
||||
}
|
||||
// public class estimate_income_expenses_detail3
|
||||
// {
|
||||
// public string list { get; set; }
|
||||
// public decimal? amount_1 { get; set; }
|
||||
// public decimal? amount_2 { get; set; }
|
||||
// public decimal? amount_3 { get; set; }
|
||||
// public decimal? amount_4 { get; set; }
|
||||
// public decimal? amount_5 { get; set; }
|
||||
// public decimal? amount_6 { get; set; }
|
||||
// public decimal? amount_7 { get; set; }
|
||||
// public decimal? amount_8 { get; set; }
|
||||
// public decimal? total_amount { get; set; }
|
||||
// }
|
||||
}
|
||||
Reference in New Issue
Block a user