add report
This commit is contained in:
31
Models/budget/budget_projects.cs
Normal file
31
Models/budget/budget_projects.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models
|
||||
{
|
||||
public class budget_projects
|
||||
{
|
||||
public string budget_year { get; set; }
|
||||
public List<budget_projects_detail> data { get; set; }
|
||||
|
||||
}
|
||||
|
||||
public class budget_projects_detail
|
||||
{
|
||||
public string budget_plan { get; set; }
|
||||
public List<budget_projects_data_detail> detail { get; set; }
|
||||
}
|
||||
|
||||
public class budget_projects_data_detail
|
||||
{
|
||||
public int? topic_type { get; set; }
|
||||
public string row_no { get; set; }
|
||||
public string project { get; set; }
|
||||
public string project_style { get; set; }
|
||||
public decimal? budget_amount { get; set; }
|
||||
public string start_date { get; set; }
|
||||
public string end_date { get; set; }
|
||||
public string responsible_agency { get; set; }
|
||||
public string responsible_person { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user