29 lines
765 B
C#
29 lines
765 B
C#
using System.Collections.Generic;
|
|
|
|
namespace rmutr_report.Models
|
|
{
|
|
public class parcel_inspection_committee
|
|
{
|
|
public string topic_name { get; set; }
|
|
public decimal? total_all_amount { get; set; }
|
|
public List<committee> data { get; set; }
|
|
}
|
|
|
|
public class committee
|
|
{
|
|
public string list { get; set; }
|
|
public decimal? total_amount { get; set; }
|
|
|
|
public List<committee_data> data_detail { get; set; }
|
|
|
|
}
|
|
|
|
public class committee_data
|
|
{
|
|
public decimal? quantity { get; set; }
|
|
public decimal? quantity_person { get; set; }
|
|
public decimal? amount { get; set; }
|
|
public decimal? quantity_work { get; set; }
|
|
public string unit { get; set; }
|
|
}
|
|
} |