bug fixed
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
kamonwan taengsuk
2023-09-28 16:53:25 +07:00
parent 86e6717cf9
commit cbddecb9d5
11 changed files with 314 additions and 43 deletions

View 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; }
}
}