add report

This commit is contained in:
kamonwan taengsuk
2023-07-06 18:24:06 +07:00
parent 7d39937527
commit 2bdfb659c9
21 changed files with 333 additions and 2454 deletions

View File

@@ -0,0 +1,19 @@
using System.Collections.Generic;
namespace rmutr_report.Models
{
public class summary_strategic
{
public string budget_year { get; set; }
public List<summary_strategic_detail> data { get; set; }
}
public class summary_strategic_detail
{
public string list { get; set; }
public decimal? target_quantity { get; set; }
public decimal? kpi_quantity { get; set; }
public decimal? strategy_quantity { get; set; }
}
}