add report
This commit is contained in:
74
Models/RoReport/operating_budget_ro_three.cs
Normal file
74
Models/RoReport/operating_budget_ro_three.cs
Normal file
@@ -0,0 +1,74 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models.RoThree
|
||||
{
|
||||
public class operating_budget_ro_three
|
||||
{
|
||||
public string budget_year { get; set; }
|
||||
public string date_range { get; set; }
|
||||
public string product { get; set; }
|
||||
public string agency_name_th { get; set; }
|
||||
public string sector { get; set; }
|
||||
public string disbursement_result_year { get; set; }
|
||||
public string set_year { get; set; }
|
||||
public List<operating_budget_ro_three_detail> data_1 { get; set; }
|
||||
|
||||
|
||||
}
|
||||
|
||||
public class operating_budget_ro_three_detail
|
||||
{
|
||||
public string list { get; set; }
|
||||
public decimal? amount_1 { get; set; }
|
||||
public decimal? amount_2 { get; set; }
|
||||
public decimal? quantity_1 { get; set; }
|
||||
public decimal? quantity_2 { get; set; }
|
||||
public decimal? rate { get; set; }
|
||||
public decimal? total_amount { get; set; }
|
||||
public string remark { get; set; }
|
||||
public List<operating_budget_ro_three_detail2> data_2{ get; set; }
|
||||
|
||||
}
|
||||
|
||||
public class operating_budget_ro_three_detail2
|
||||
{
|
||||
public int? rowno { get; set; }
|
||||
public string list { get; set; }
|
||||
public decimal? amount_1 { get; set; }
|
||||
public decimal? amount_2 { get; set; }
|
||||
public decimal? quantity_1 { get; set; }
|
||||
public decimal? quantity_2 { get; set; }
|
||||
public decimal? rate { get; set; }
|
||||
public decimal? total_amount { get; set; }
|
||||
public string remark { get; set; }
|
||||
public List<operating_budget_ro_three_detail3> data_3{ get; set; }
|
||||
|
||||
}
|
||||
|
||||
public class operating_budget_ro_three_detail3
|
||||
{
|
||||
public int? rowno { get; set; }
|
||||
public string list { get; set; }
|
||||
public decimal? amount_1 { get; set; }
|
||||
public decimal? amount_2 { get; set; }
|
||||
public decimal? quantity_1 { get; set; }
|
||||
public decimal? quantity_2 { get; set; }
|
||||
public decimal? rate { get; set; }
|
||||
public decimal? total_amount { get; set; }
|
||||
public string remark { get; set; }
|
||||
public List<operating_budget_ro_three_detail4> data_4{ get; set; }
|
||||
|
||||
}
|
||||
|
||||
public class operating_budget_ro_three_detail4
|
||||
{
|
||||
public string list { get; set; }
|
||||
public decimal? amount_1 { get; set; }
|
||||
public decimal? amount_2 { get; set; }
|
||||
public decimal? quantity_1 { get; set; }
|
||||
public decimal? quantity_2 { get; set; }
|
||||
public decimal? rate { get; set; }
|
||||
public decimal? total_amount { get; set; }
|
||||
public string remark { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user