This commit is contained in:
kamonwan taengsuk
2023-02-08 17:35:54 +07:00
parent 23c2e53d08
commit b2ddfd2c97
2 changed files with 94 additions and 49 deletions

View File

@@ -14,21 +14,28 @@ namespace rmutr_report.Models
{
public string header_1 { get; set; }
public string header_2 { get; set; }
public string indicator_type_name_th { get; set; }
//public string indicator_type_name_th { get; set; }
public List<kpi_data_details> data { get; set; }
}
public class kpi_data_details
{
//public int? row { get; set; }
public string indicator_type_name_th { get; set; }
public List<kpi_data_details2> data_detail { get; set; }
}
public class kpi_data_details2
{
public int? row { get; set; }
public string name { get; set; }
public string unit { get; set; }
public decimal? value { get; set; }
public string responsible_person { get; set; }
public string responsible_work { get; set; }
public string collector { get; set; }
}
}