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

This commit is contained in:
kamonwan taengsuk
2023-08-21 18:12:47 +07:00
parent b078d3ff42
commit 7a1b6be512
10 changed files with 299 additions and 130 deletions

View File

@@ -17,50 +17,75 @@ namespace rmutr_report.Models
//public string agency_category_name { get; set; } //ผลผลิต
public decimal? total { get; set; }
public List<budget> budgets { get; set; }
//public List<budget> budgets2 { get; set; }
}
public class budget
{
public string topic { get; set; }
public decimal? total { get; set; } //แผนงาน
public 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 //รายการบุคลกร
{
public string topic { get; set; }
public decimal? total { get; set; }
public List<budget_personnel_list> budget_personnel_lists { get; set; }
public List<budget_personnel_list> budget_personnel_lists2 { get; set; }
}
public class budget_personnel_list //งบบุคลากร
{
public string topic { get; set; }
public decimal? rate { get; set; }
public decimal? total { get; set; }
public string text1 { get; set; }
public string text2 { get; set; }
public List<budget_personnel_list_2> budget_personnel_lists_2 { get; set; }
}
public class budget_personnel_list_2 //ค่าจ้างชั่วคราว
{
public int? row_no { get; set; }
public string topic { get; set; }
public decimal? rate { get; set; }
public decimal? total { get; set; }
public string text1 { get; set; }
public string text2 { get; set; }
public List<budget_rate> budget_rates { get; set; }
}
public class budget_rate //อัตราเดิม/อัตราใหม่
{
public int? row_no { get; set; }
public string topic { get; set; }
public decimal? rate { get; set; }
public decimal? total { get; set; }
public string text1 { get; set; }
public string text2 { get; set; }
public List<details> details { get; set; }
}
public class details //อันรองลงมา
{
public int? row_no { get; set; }
public string position_level { get; set; }
public string qualification { get; set; }
public decimal? rate { get; set; }
public decimal? total { get; set; }
public string text1 { get; set; }
public string text2 { get; set; }
public List<details2> details2 { get; set; }
}
public class details2 //อันรองลงมา
{
public int? row_no { get; set; }
public string topic { get; set; }
public decimal? total { get; set; }
public string text1 { get; set; }
}
}