57 lines
2.2 KiB
C#
57 lines
2.2 KiB
C#
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 string branch_name { 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; }
|
|
// }
|
|
} |