37 lines
1.4 KiB
C#
37 lines
1.4 KiB
C#
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; }
|
|
}
|
|
} |