31 lines
1.1 KiB
C#
31 lines
1.1 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace rmutr_report.Models
|
|
{
|
|
public class ro_eleven
|
|
{
|
|
public string budget_year { get; set; }
|
|
public string date_range { get; set; }
|
|
public string agency_name_th { get; set; }
|
|
public string setrevenue_year { get; set; }
|
|
public string prepare_revenue_year { get; set; }
|
|
public string revenue_year { get; set; }
|
|
public List<ro_eleven_detail> data { get; set; }
|
|
public decimal? total_amount_1 { get; set; }
|
|
public decimal? total_amount_2 { get; set; }
|
|
public decimal? total_amount_3 { get; set; }
|
|
public string save_data_name { get; set; }
|
|
public string save_data_display_name { get; set; }
|
|
public string position { get; set; }
|
|
public string data_date { get; set; }
|
|
public string phone_no { get; set; }
|
|
}
|
|
|
|
public class ro_eleven_detail
|
|
{
|
|
public string list { get; set; }
|
|
public decimal? amount_1 { get; set; }
|
|
public decimal? amount_2 { get; set; }
|
|
public decimal? amount_3 { get; set; }
|
|
}
|
|
} |