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