add report
This commit is contained in:
23
Models/budget/repair_cost.cs
Normal file
23
Models/budget/repair_cost.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models
|
||||
{
|
||||
public class repair_cost
|
||||
{
|
||||
public string budget_year { get; set; }
|
||||
public string plan { get; set; }
|
||||
public string product { get; set; }
|
||||
public string agency { get; set; }
|
||||
public string area { get; set; }
|
||||
public List<repair_cost_detail> data { get; set; }
|
||||
}
|
||||
|
||||
public class repair_cost_detail
|
||||
{
|
||||
public string no { get; set; }
|
||||
public string type_vehicle_transport { get; set; }
|
||||
public decimal? quantity { get; set; }
|
||||
public decimal? repair_rate { get; set; }
|
||||
public decimal? amount { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user