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

This commit is contained in:
kamonwan taengsuk
2023-08-22 17:07:36 +07:00
parent edf731702c
commit 5d6843f33e
9 changed files with 545 additions and 128 deletions

View File

@@ -0,0 +1,87 @@
using System.Collections.Generic;
namespace rmutr_report.Models
{
public class budget_expenditure_report_from_revenue_v2
{
public string academic_year_name_th { get; set; }
public string sector { get; set; } //ภาค
public string parent_agency_name { get; set; } //หน่วยงาน
public string agency_name_th { get; set; } //พื้นที่
public decimal? total { get; set; }
public List<budget_expenditure_report_from_revenue_v2_detail> details { get; set; }
}
public class budget_expenditure_report_from_revenue_v2_detail
{
public int? topic_type { get; set; }
public int? row_no1 { get; set; }
public int? row_no2 { get; set; }
public int? row_no3 { get; set; }
public int? row_no4 { get; set; }
public int? row_no5 { get; set; }
public int? row_no6 { get; set; }
public string topic { get; set; }
public string qualification { get; set; }
public string unit { get; set; }
public decimal? value1 { get; set; }
public decimal? value2 { get; set; }
public decimal? value3 { get; set; }
public decimal? value4 { get; set; }
public string topic1 { get; set; }
public string topic2 { get; set; }
public string topic3 { get; set; }
public string topic4 { get; set; }
public string topic5 { get; set; }
public string topic6 { get; set; }
public string topic7 { get; set; }
public string topic8 { get; set; }
public string topic9 { get; set; }
public string topic10 { get; set; }
public string topic11 { get; set; }
public string topic12 { get; set; }
public string topic13 { get; set; }
public string topic14 { get; set; }
public string topic15 { get; set; }
public decimal? amount1 { get; set; }
public decimal? amount2 { get; set; }
public decimal? amount3 { get; set; }
public decimal? amount4 { get; set; }
public decimal? amount5 { get; set; }
public decimal? amount6 { get; set; }
public decimal? amount7 { get; set; }
public decimal? amount8 { get; set; }
public decimal? amount9 { get; set; }
public decimal? amount10 { get; set; }
public decimal? amount11 { get; set; }
public decimal? amount12 { get; set; }
public decimal? amount13 { get; set; }
public decimal? amount14 { get; set; }
public decimal? amount15 { get; set; }
public decimal? amount16 { get; set; }
public decimal? amount17 { get; set; }
public string text1 { get; set; }
public string text2 { get; set; }
public string text3 { get; set; }
public string text4 { get; set; }
public string text5 { get; set; }
public string text6 { get; set; }
public string text7 { get; set; }
public string text8 { get; set; }
public string text9 { get; set; }
public string text10 { get; set; }
public string text11 { get; set; }
public string text12 { get; set; }
public string text13 { get; set; }
public string text14 { get; set; }
public string text15 { get; set; }
public string text16 { get; set; }
public string text17 { get; set; }
public string text18 { get; set; }
public string text19 { get; set; }
public string text20 { get; set; }
public string text21 { get; set; }
public string text22 { get; set; }
//public string line { get; set; }
}
}