31 lines
985 B
C#
31 lines
985 B
C#
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; }
|
|
}
|
|
} |