This commit is contained in:
25
Models/budget/meal_costs_outside.cs
Normal file
25
Models/budget/meal_costs_outside.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models
|
||||
{
|
||||
public class meal_costs_outside
|
||||
{
|
||||
public int? topic_type { get; set; }
|
||||
public string topic { get; set; }
|
||||
public decimal? day { get; set; }
|
||||
public decimal? person { get; set; }
|
||||
public decimal? amount { get; set; }
|
||||
public decimal? total_amount { get; set; }
|
||||
|
||||
public List<meal_costs_outside_detail>data { get; set; }
|
||||
}
|
||||
|
||||
public class meal_costs_outside_detail
|
||||
{
|
||||
public string topic { get; set; }
|
||||
public decimal? day { get; set; }
|
||||
public decimal? person { get; set; }
|
||||
public decimal? amount { get; set; }
|
||||
public decimal? total_amount { get; set; }
|
||||
}
|
||||
}
|
||||
22
Models/budget/national_budget_list.cs
Normal file
22
Models/budget/national_budget_list.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models
|
||||
{
|
||||
public class national_budget_list
|
||||
{
|
||||
public int? report_type { get; set; }
|
||||
public string type { get; set; }
|
||||
public string budget_year { get; set; }
|
||||
public List<national_budget_list_detail> data { get; set; }
|
||||
}
|
||||
|
||||
public class national_budget_list_detail
|
||||
{
|
||||
public string list { get; set; }
|
||||
public decimal? quantity { get; set; }
|
||||
public string unit { get; set; }
|
||||
public decimal? unit_price { get; set; }
|
||||
public decimal? total_amount { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
29
Models/budget/parcel_inspection_committee.cs
Normal file
29
Models/budget/parcel_inspection_committee.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models
|
||||
{
|
||||
public class parcel_inspection_committee
|
||||
{
|
||||
public string topic_name { get; set; }
|
||||
public decimal? total_all_amount { get; set; }
|
||||
public List<committee> data { get; set; }
|
||||
}
|
||||
|
||||
public class committee
|
||||
{
|
||||
public string list { get; set; }
|
||||
public decimal? total_amount { get; set; }
|
||||
|
||||
public List<committee_data> data_detail { get; set; }
|
||||
|
||||
}
|
||||
|
||||
public class committee_data
|
||||
{
|
||||
public decimal? quantity { get; set; }
|
||||
public decimal? quantity_person { get; set; }
|
||||
public decimal? amount { get; set; }
|
||||
public decimal? quantity_work { get; set; }
|
||||
public string unit { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user