add ค่าควบคุมงานก่อสร้าง
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
kamonwan taengsuk
2023-11-17 10:52:31 +07:00
parent af9a9c8af5
commit 79269514ba
12 changed files with 145 additions and 6 deletions

View File

@@ -0,0 +1,20 @@
using System.Collections.Generic;
namespace rmutr_report.Models
{
public class control_cost_construction
{
public int? topic_type { get; set; }
public string topic { get; set; }
public List<control_cost_construction_detail> data { get; set; }
}
public class control_cost_construction_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; }
}
}