add รายงานค่าสอนพิเศษ
This commit is contained in:
19
Models/budget/operating_expenses.cs
Normal file
19
Models/budget/operating_expenses.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models
|
||||
{
|
||||
public class operating_expenses
|
||||
{
|
||||
public string product { get; set; }
|
||||
public string request_year { get; set; }
|
||||
public List<operating_expenses_detail> data { get; set; }
|
||||
}
|
||||
|
||||
public class operating_expenses_detail
|
||||
{
|
||||
public string no { get; set; }
|
||||
public string expenditure_budget { get; set; }
|
||||
public decimal? amount { get; set; }
|
||||
public string clarification_summary { get; set; }
|
||||
}
|
||||
}
|
||||
43
Models/budget/teaching_fee_extra.cs
Normal file
43
Models/budget/teaching_fee_extra.cs
Normal file
@@ -0,0 +1,43 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models
|
||||
{
|
||||
public class teaching_fee_extra
|
||||
{
|
||||
public string agency_name_th { get; set; }
|
||||
public string area { get; set; }
|
||||
public string product { get; set; }
|
||||
public string term_1_year { get; set; }
|
||||
public string term_2_year { get; set; }
|
||||
|
||||
public List<teaching_fee_extra_detail> data { get; set; }
|
||||
}
|
||||
|
||||
public class teaching_fee_extra_detail
|
||||
{
|
||||
public string course { get; set; }
|
||||
public decimal? number_of_hours1 { get; set; }
|
||||
public decimal? number_of_weeks1 { get; set; }
|
||||
public decimal? amount1 { get; set; }
|
||||
public decimal? number_of_hours2 { get; set; }
|
||||
public decimal? number_of_weeks2 { get; set; }
|
||||
public decimal? amount2 { get; set; }
|
||||
public decimal? total_amount { get; set; }
|
||||
public string major { get; set; }
|
||||
public List<teaching_fee_extra_datadetail> datadetail { get; set; }
|
||||
}
|
||||
|
||||
public class teaching_fee_extra_datadetail
|
||||
{
|
||||
public string teacher { get; set; }
|
||||
public string teaching_rate { get; set; }
|
||||
public decimal? number_of_hours1 { get; set; }
|
||||
public decimal? number_of_weeks1 { get; set; }
|
||||
public decimal? amount1 { get; set; }
|
||||
public decimal? number_of_hours2 { get; set; }
|
||||
public decimal? number_of_weeks2 { get; set; }
|
||||
public decimal? amount2 { get; set; }
|
||||
public decimal? total_amount { get; set; }
|
||||
//public string major { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user