This commit is contained in:
kamonwan taengsuk
2023-07-13 19:20:34 +07:00
parent be208e3f5c
commit 4ce4d619d6
7 changed files with 28 additions and 22 deletions

View File

@@ -5,7 +5,7 @@ namespace rmutr_report.Models
public class budget_expenditure_report_from_revenue
{
public string academic_year_name_th { get; set; }
//public string start_and_end_date_report { get; set; }
public string sector { get; set; } //ภาค
//public string revenue_estimates_type { get; set; }
@@ -23,7 +23,8 @@ namespace rmutr_report.Models
{
public decimal? total { get; set; } //แผนงาน
public List<personnel_list> personnel_lists { get; set; }
public personnel_list personnel_lists { get; set; }
public List<personnel_list> personnel_list_s { get; set; }
}
public class personnel_list //รายการบุคลกร
@@ -52,15 +53,14 @@ namespace rmutr_report.Models
public string topic { get; set; }
public decimal? rate { get; set; }
public decimal? total { get; set; }
public List<budget_rate_details> details { get; set; }
public List<details> details { get; set; }
}
public class budget_rate_details //อันรองลงมา
public class details //อันรองลงมา
{
public string position_level { get; set; }
public string qualification { get; set; }
public decimal? rate { get; set; }
public decimal? total { get; set; }
}
}