53 lines
1.8 KiB
C#
53 lines
1.8 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace rmutr_report.Models
|
|
{
|
|
public class operating_expenses
|
|
{
|
|
public string budget_year { get; set; }
|
|
public string plan { get; set; }
|
|
public string product { get; set; }
|
|
public string agency { get; set; }
|
|
public string area { get; set; }
|
|
public string request_year { get; set; }
|
|
public decimal? total_amount { get; set; }
|
|
public List<operating_expenses_detail> data { get; set; }
|
|
}
|
|
|
|
public class operating_expenses_detail
|
|
{
|
|
public string no { get; set; }
|
|
public string expenditure_budget { get; set; }
|
|
public decimal? amount { get; set; }
|
|
public string clarification_summary { get; set; }
|
|
// public List<operating_expenses_detail2> data_2 { get; set; }
|
|
|
|
}
|
|
|
|
// public class operating_expenses_detail2
|
|
// {
|
|
// public string no { get; set; }
|
|
// public string expenditure_budget { get; set; }
|
|
// public decimal? amount { get; set; }
|
|
// //public string clarification_summary { get; set; }
|
|
// public List<operating_expenses_detail3> data_3 { get; set; }
|
|
//
|
|
// }
|
|
//
|
|
// public class operating_expenses_detail3
|
|
// {
|
|
// public string no { get; set; }
|
|
// public string expenditure_budget { get; set; }
|
|
// public decimal? amount { get; set; }
|
|
// //public string clarification_summary { get; set; }
|
|
// public List<operating_expenses_detail4> data_4 { get; set; }
|
|
// }
|
|
//
|
|
// public class operating_expenses_detail4
|
|
// {
|
|
// //public string no { get; set; }
|
|
// public string expenditure_budget { get; set; }
|
|
// public decimal? amount { get; set; }
|
|
// public string clarification_summary { get; set; }
|
|
// }
|
|
} |