27 lines
892 B
C#
27 lines
892 B
C#
using System.Collections.Generic;
|
|
|
|
namespace rmutr_report.Models.RoThree
|
|
{
|
|
public class compensation_ro_three
|
|
{
|
|
public int? topic_type { get; set; } //1 2 3
|
|
public string topic_name { 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 decimal? total_amount { get; set; }
|
|
public List<compensation_ro_three_detail> data { get; set; }
|
|
}
|
|
|
|
public class compensation_ro_three_detail
|
|
{
|
|
public string faculty_name_th { get; set; }
|
|
public string display_name_th { get; set; }
|
|
public decimal? salary_rate { get; set; }
|
|
public decimal? budget_amount { get; set; }
|
|
public string remark { get; set; }
|
|
|
|
}
|
|
} |