This commit is contained in:
19
Models/budget/budget_progress_insurances.cs
Normal file
19
Models/budget/budget_progress_insurances.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models
|
||||
{
|
||||
public class budget_progress_insurances
|
||||
{
|
||||
public string budget_year { get; set; }
|
||||
public List<budget_progress_insurances_detail> data { get; set; }
|
||||
}
|
||||
|
||||
public class budget_progress_insurances_detail
|
||||
{
|
||||
public string car_number { get; set; }
|
||||
public decimal? amount { get; set; }
|
||||
public decimal? car_act { get; set; }
|
||||
public string month { get; set; }
|
||||
public decimal? total_amount { get; set; }
|
||||
}
|
||||
}
|
||||
45
Models/budget/material_edu_cal_form.cs
Normal file
45
Models/budget/material_edu_cal_form.cs
Normal file
@@ -0,0 +1,45 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models
|
||||
{
|
||||
public class material_edu_cal_form
|
||||
{
|
||||
public string budget_year { get; set; }
|
||||
public string faculty_name_th { get; set; }
|
||||
public string area { get; set; }
|
||||
public List<material_edu_cal_form_detail> data { get; set; }
|
||||
public decimal? total_amount { get; set; }
|
||||
}
|
||||
|
||||
public class material_edu_cal_form_detail
|
||||
{
|
||||
public string faculty_name_th { get; set; }
|
||||
public string area { get; set; }
|
||||
public string curriculum_name_th { get; set; }
|
||||
public string semester_1 { get; set; }
|
||||
public string semester_2 { get; set; }
|
||||
public string year_1 { get; set; }
|
||||
public string year_2 { get; set; }
|
||||
public decimal? amount { get; set; }
|
||||
public List<material_edu_cal_form_detail2> data_detail { get; set; }
|
||||
|
||||
}
|
||||
|
||||
public class material_edu_cal_form_detail2
|
||||
{
|
||||
public int? topic_type { get; set; }
|
||||
public string no { get; set; }
|
||||
public string topic { get; set; }
|
||||
// public string semester_1 { get; set; }
|
||||
// public string semester_2 { get; set; }
|
||||
// public string year_1 { get; set; }
|
||||
// public string year_2 { get; set; }
|
||||
public decimal? amount_1 { get; set; }
|
||||
public decimal? rate_1 { get; set; }
|
||||
public decimal? total_amount_1 { get; set; }
|
||||
public decimal? amount_2 { get; set; }
|
||||
public decimal? rate_2 { get; set; }
|
||||
public decimal? total_amount_2 { get; set; }
|
||||
public decimal? total_all_amount { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user