update
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
kamonwan taengsuk
2023-11-24 16:09:02 +07:00
parent 5ba7919b29
commit 4e25c3a694
13 changed files with 164 additions and 61 deletions

View File

@@ -17,4 +17,18 @@ namespace rmutr_report.Models
public decimal? quantity_work { get; set; }
public decimal? total_amount { get; set; }
}
public class control_cost_construction_wages
{
public decimal? total_amount { get; set; }
public List<control_cost_construction_wages_detail> data { get; set; }
}
public class control_cost_construction_wages_detail
{
public decimal? quantity_day { get; set; }
public decimal? quantity_person { get; set; }
public decimal? amount { get; set; }
public decimal? quantity_work { get; set; }
public decimal? total_amount { get; set; }
}
}