Bug Fixed
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
kamonwan taengsuk
2024-08-23 20:13:50 +07:00
parent a58f124c5e
commit 9f3a5950c6
20 changed files with 114 additions and 42 deletions

View File

@@ -9,12 +9,15 @@ namespace rmutr_report.Models
public string parent_agency_name { get; set; } //หน่วยงาน
public string agency_name_th { get; set; } //พื้นที่
public decimal? total { get; set; }
public string academic_year_1 { get; set; }
public string academic_year_2 { 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 bool? is_other { get; set; }
public int? row_no1 { get; set; }
public int? row_no2 { get; set; }
public int? row_no3 { get; set; }
@@ -23,6 +26,8 @@ namespace rmutr_report.Models
public int? row_no6 { get; set; }
public int? row_no7 { get; set; }
public int? row_no8 { get; set; }
public int? row_no9 { get; set; }
public int? row_no10 { get; set; }
public string topic { get; set; }
public string qualification { get; set; }
public string unit { get; set; }
@@ -47,6 +52,7 @@ namespace rmutr_report.Models
public string topic15 { get; set; }
public string topic16 { get; set; }
public string topic17 { get; set; }
public string topic18 { get; set; }
public decimal? amount1 { get; set; }
public decimal? amount2 { get; set; }
public decimal? amount3 { get; set; }
@@ -66,6 +72,7 @@ namespace rmutr_report.Models
public decimal? amount17 { get; set; }
public decimal? amount18 { get; set; }
public decimal? amount19 { get; set; }
public decimal? amount20 { get; set; }
public string text1 { get; set; }
public string text2 { get; set; }
public string text3 { get; set; }
@@ -90,6 +97,7 @@ namespace rmutr_report.Models
public string text22 { get; set; }
public string text23 { get; set; }
public string text24 { get; set; }
//public string line { get; set; }
public string text25 { get; set; }
public string text26 { get; set; }
}
}