add report and SwaggerOperation
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
27
Models/budget/target_budget_project.cs
Normal file
27
Models/budget/target_budget_project.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models
|
||||
{
|
||||
public class target_budget_project
|
||||
{
|
||||
public string budget_project_name_th { get; set; }
|
||||
public string plan_year_1 { get; set; }
|
||||
public string plan_year_2 { get; set; }
|
||||
public string plan_year_3 { get; set; }
|
||||
public string plan_year_4 { get; set; }
|
||||
public string plan_year_5 { get; set; }
|
||||
public List<target_budget_project_detail> data { get; set; }
|
||||
}
|
||||
|
||||
public class target_budget_project_detail
|
||||
{
|
||||
public string indicators_money_source { get; set; }
|
||||
public string unit { get; set; }
|
||||
public string plan_value_1 { get; set; }
|
||||
public string plan_value_2 { get; set; }
|
||||
public string plan_value_3 { get; set; }
|
||||
public string plan_value_4 { get; set; }
|
||||
public string plan_value_5 { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user