34 lines
1.1 KiB
C#
34 lines
1.1 KiB
C#
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; }
|
|
}
|
|
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; }
|
|
}
|
|
} |