This commit is contained in:
37
Models/RoReport/calculate_meeting_expenses.cs
Normal file
37
Models/RoReport/calculate_meeting_expenses.cs
Normal file
@@ -0,0 +1,37 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models.RoThree
|
||||
{
|
||||
public class calculate_meeting_expenses
|
||||
{
|
||||
public int? topic_type { get; set; }
|
||||
public string text1 { get; set; }
|
||||
public string text2 { get; set; }
|
||||
public string text3 { get; set; }
|
||||
public string text4 { get; set; }
|
||||
public string budget_year { get; set; }
|
||||
public string date_range { get; set; }
|
||||
public string product { get; set; }
|
||||
public string agency_name_th { get; set; }
|
||||
public string sector { get; set; }
|
||||
public List<calculate_meeting_expenses_data_datail> data { get; set; }
|
||||
public decimal? disbursement_result { get; set; }
|
||||
public decimal? expense_rate { get; set; }
|
||||
public decimal? count_person { get; set; }
|
||||
public decimal? count_meetings { get; set; }
|
||||
public decimal? total { get; set; }
|
||||
}
|
||||
|
||||
public class calculate_meeting_expenses_data_datail
|
||||
{
|
||||
public int? topic_type { get; set; } //1 2
|
||||
public string no { get; set; }
|
||||
public string row_no { get; set; }
|
||||
public string topic_name { get; set; }
|
||||
public decimal? disbursement_result { get; set; }
|
||||
public decimal? expense_rate { get; set; }
|
||||
public decimal? count_person { get; set; }
|
||||
public decimal? count_meetings { get; set; }
|
||||
public decimal? total { get; set; }
|
||||
}
|
||||
}
|
||||
22
Models/RoReport/consultant_compensation.cs
Normal file
22
Models/RoReport/consultant_compensation.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models.RoThree
|
||||
{
|
||||
public class consultant_compensation
|
||||
{
|
||||
public int? topic_type { get; set; } //1 2 3 4 5 6
|
||||
public string topic_name { get; set; }
|
||||
public decimal? total_amount { get; set; }
|
||||
|
||||
public List<consultant_compensation_detail> data { get; set; }
|
||||
}
|
||||
|
||||
public class consultant_compensation_detail
|
||||
{
|
||||
public string list { get; set; }
|
||||
public decimal? quantity_day { get; set; }
|
||||
public decimal? quantity_person { get; set; }
|
||||
public decimal? rate { get; set; }
|
||||
public decimal? total_amount { get; set; }
|
||||
}
|
||||
}
|
||||
25
Models/RoReport/service_fee_ro_three.cs
Normal file
25
Models/RoReport/service_fee_ro_three.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models.RoThree
|
||||
{
|
||||
public class service_fee_ro_three
|
||||
{
|
||||
public string budget_year { get; set; }
|
||||
public string date_range { get; set; }
|
||||
public string product { get; set; }
|
||||
public string agency_name_th { get; set; }
|
||||
public string sector { get; set; }
|
||||
public List<service_fee_ro_three_data_datail> data { get; set; }
|
||||
|
||||
}
|
||||
|
||||
public class service_fee_ro_three_data_datail
|
||||
{
|
||||
public string service_fee_type { get; set; }
|
||||
public string list { get; set; }
|
||||
public decimal? area { get; set; }
|
||||
public decimal? count_person { get; set; }
|
||||
public decimal? wage_month { get; set; }
|
||||
public decimal? wage_year { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user