add GovernmentBudget
This commit is contained in:
142
Models/budget/budget_government_allocate.cs
Normal file
142
Models/budget/budget_government_allocate.cs
Normal file
@@ -0,0 +1,142 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models
|
||||
{
|
||||
public class budget_government_allocate
|
||||
{
|
||||
public string budget_year { get; set; }
|
||||
//รวมทั้งสิ้นบรรทัดแรก
|
||||
public decimal? total_budget_personnel { get; set; }
|
||||
public decimal? total_budget_operating{ get; set; }
|
||||
public decimal? total_budget_investment { get; set; }
|
||||
public decimal? total_personnel_expense { get; set; }
|
||||
public decimal? total_project_expense { get; set; }
|
||||
public decimal? total_operating_expenses { get; set; }
|
||||
public decimal? total_other_operating_expenses { get; set; }
|
||||
public decimal? total_budget { get; set; }
|
||||
//รวมทั้งสิ้นบรรทัดสอง
|
||||
public decimal? salary_person { get; set; }
|
||||
public decimal? regular_wages_person { get; set; }
|
||||
public decimal? temporary_wages_person { get; set; }
|
||||
public decimal? government_employee { get; set; }
|
||||
|
||||
public decimal? compensation_operating_budget { get; set; }
|
||||
public decimal? cost_operating_budget { get; set; }
|
||||
public decimal? material_cost_operating_budget { get; set; }
|
||||
public decimal? utility_bill_operating_budget { get; set; }
|
||||
|
||||
public decimal? cost_equipment { get; set; }
|
||||
public decimal? land_building { get; set; }
|
||||
|
||||
public decimal? compensation_operating_expenses { get; set; }
|
||||
public decimal? cost_operating_expenses { get; set; }
|
||||
public decimal? material_cost_operating_expenses { get; set; }
|
||||
public decimal? utility_bill_operating_expenses { get; set; }
|
||||
public List<budget_government_allocate_detail> data_1 { get; set; }
|
||||
|
||||
|
||||
}
|
||||
|
||||
public class budget_government_allocate_detail
|
||||
{
|
||||
public int? color { get; set; }
|
||||
public string list { get; set; }
|
||||
//รวมบรรทัดแรก
|
||||
public decimal? total_budget_personnel { get; set; }
|
||||
public decimal? total_budget_operating{ get; set; }
|
||||
public decimal? total_budget_investment { get; set; }
|
||||
public decimal? total_personnel_expense { get; set; }
|
||||
public decimal? total_project_expense { get; set; }
|
||||
public decimal? total_operating_expenses { get; set; }
|
||||
public decimal? total_other_operating_expenses { get; set; }
|
||||
public decimal? total_budget { get; set; }
|
||||
//รวมบรรทัดสอง
|
||||
// public decimal? salary_person { get; set; }
|
||||
// public decimal? regular_wages_person { get; set; }
|
||||
// public decimal? temporary_wages_person { get; set; }
|
||||
// public decimal? government_employee { get; set; }
|
||||
//
|
||||
// public decimal? compensation_operating_budget { get; set; }
|
||||
// public decimal? cost_operating_budget { get; set; }
|
||||
// public decimal? material_cost_operating_budget { get; set; }
|
||||
// public decimal? utility_bill_operating_budget { get; set; }
|
||||
//
|
||||
// public decimal? cost_equipment { get; set; }
|
||||
// public decimal? land_building { get; set; }
|
||||
//
|
||||
// public decimal? compensation_operating_expenses { get; set; }
|
||||
// public decimal? cost_operating_expenses { get; set; }
|
||||
// public decimal? material_cost_operating_expenses { get; set; }
|
||||
// public decimal? utility_bill_operating_expenses { get; set; }
|
||||
public List<budget_government_allocate_detail2> data_2 { get; set; }
|
||||
|
||||
}
|
||||
|
||||
public class budget_government_allocate_detail2
|
||||
{
|
||||
public int? color { get; set; }
|
||||
public string list { get; set; }
|
||||
//รวมบรรทัดแรก
|
||||
// public decimal? total_budget_personnel { get; set; }
|
||||
// public decimal? total_budget_operating{ get; set; }
|
||||
// public decimal? total_budget_investment { get; set; }
|
||||
// public decimal? total_personnel_expense { get; set; }
|
||||
// public decimal? total_project_expense { get; set; }
|
||||
// public decimal? total_operating_expenses { get; set; }
|
||||
// public decimal? total_other_operating_expenses { get; set; }
|
||||
// public decimal? total_budget { get; set; }
|
||||
//รวมบรรทัดสอง
|
||||
public decimal? salary_person { get; set; }
|
||||
public decimal? regular_wages_person { get; set; }
|
||||
public decimal? temporary_wages_person { get; set; }
|
||||
public decimal? government_employee { get; set; }
|
||||
|
||||
public decimal? compensation_operating_budget { get; set; }
|
||||
public decimal? cost_operating_budget { get; set; }
|
||||
public decimal? material_cost_operating_budget { get; set; }
|
||||
public decimal? utility_bill_operating_budget { get; set; }
|
||||
|
||||
public decimal? cost_equipment { get; set; }
|
||||
public decimal? land_building { get; set; }
|
||||
|
||||
public decimal? compensation_operating_expenses { get; set; }
|
||||
public decimal? cost_operating_expenses { get; set; }
|
||||
public decimal? material_cost_operating_expenses { get; set; }
|
||||
public decimal? utility_bill_operating_expenses { get; set; }
|
||||
//public List<budget_government_allocate_detail3> data_3 { get; set; }
|
||||
|
||||
}
|
||||
|
||||
// public class budget_government_allocate_detail3
|
||||
// {
|
||||
// public int? color { get; set; }
|
||||
// public string list { get; set; }
|
||||
// //รวมบรรทัดแรก
|
||||
// public decimal? total_budget_personnel { get; set; }
|
||||
// public decimal? total_budget_operating{ get; set; }
|
||||
// public decimal? total_budget_investment { get; set; }
|
||||
// public decimal? total_personnel_expense { get; set; }
|
||||
// public decimal? total_project_expense { get; set; }
|
||||
// public decimal? total_operating_expenses { get; set; }
|
||||
// public decimal? total_other_operating_expenses { get; set; }
|
||||
// public decimal? total_budget { get; set; }
|
||||
// //รวมบรรทัดสอง
|
||||
// public decimal? salary_person { get; set; }
|
||||
// public decimal? regular_wages_person { get; set; }
|
||||
// public decimal? temporary_wages_person { get; set; }
|
||||
// public decimal? government_employee { get; set; }
|
||||
//
|
||||
// public decimal? compensation_operating_budget { get; set; }
|
||||
// public decimal? cost_operating_budget { get; set; }
|
||||
// public decimal? material_cost_operating_budget { get; set; }
|
||||
// public decimal? utility_bill_operating_budget { get; set; }
|
||||
//
|
||||
// public decimal? cost_equipment { get; set; }
|
||||
// public decimal? land_building { get; set; }
|
||||
//
|
||||
// public decimal? compensation_operating_expenses { get; set; }
|
||||
// public decimal? cost_operating_expenses { get; set; }
|
||||
// public decimal? material_cost_operating_expenses { get; set; }
|
||||
// public decimal? utility_bill_operating_expenses { get; set; }
|
||||
// }
|
||||
}
|
||||
Reference in New Issue
Block a user