This commit is contained in:
kamonwan taengsuk
2023-06-13 17:54:48 +07:00
parent 3756864fca
commit bddfeac821
19 changed files with 1625 additions and 127 deletions

View File

@@ -0,0 +1,31 @@
using System.Collections.Generic;
namespace rmutr_report.Models.RoThree
{
public class material_fuel_lubricant
{
public string product { get; set; }
public string agency_name_th { get; set; }
public string sector { get; set; }
public decimal? total_amount { get; set; }
public List<material_fuel_lubricant_detail> data { get; set; }
}
public class material_fuel_lubricant_detail
{
public string type { get; set; }
public decimal? total_amount { get; set; }
public List<material_fuel_lubricant_data_detail> data_detail { get; set; }
}
public class material_fuel_lubricant_data_detail
{
public string rowno { get; set; }
public string type { get; set; }
public string registration_number { get; set; }
public decimal? distance { get; set; }
public decimal? average_rate { get; set; }
public decimal? total_amount { get; set; }
}
}