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

This commit is contained in:
kamonwan taengsuk
2023-11-06 12:38:12 +07:00
parent 6fcb0a856a
commit 4c9484d57e
16 changed files with 533 additions and 21 deletions

View File

@@ -0,0 +1,27 @@
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; }
}
}