This commit is contained in:
@@ -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; }
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user