update
This commit is contained in:
31
Models/RoThree/material_fuel_lubricant.cs
Normal file
31
Models/RoThree/material_fuel_lubricant.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user