This commit is contained in:
28
Models/RoReport/summary_income_cooperative.cs
Normal file
28
Models/RoReport/summary_income_cooperative.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models.RoThree
|
||||
{
|
||||
public class summary_income_cooperative
|
||||
{
|
||||
public string budget_year { get; set; }
|
||||
public string date_range { get; set; }
|
||||
public string faculty_college { get; set; }
|
||||
public string area { get; set; }
|
||||
public List<summary_income_cooperative_detail> data { get; set; }
|
||||
public string maker { get; set; }
|
||||
public string position_maker { get; set; }
|
||||
public string maker_date { get; set; }
|
||||
}
|
||||
|
||||
public class summary_income_cooperative_detail
|
||||
{
|
||||
public int? topic_type { get; set; }
|
||||
public string topic { get; set; }
|
||||
public decimal? revenue_estimates { get; set; }
|
||||
public decimal? deduct_expenses_percent60 { get; set; }
|
||||
public decimal? deduct_expenses_percent10 { get; set; }
|
||||
public decimal? balance { get; set; }
|
||||
public decimal? deduct_tuition_fees { get; set; }
|
||||
public decimal? balance_university { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user