update
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
kamonwan taengsuk
2023-11-22 19:11:13 +07:00
parent 3666713748
commit 3a2f956d02
16 changed files with 676 additions and 27 deletions

View 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; }
}
}

View 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; }
}
}

View 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; }
}
}