This commit is contained in:
27
Models/RoReport/compensation_ro_three.cs
Normal file
27
Models/RoReport/compensation_ro_three.cs
Normal 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; }
|
||||
|
||||
}
|
||||
}
|
||||
31
Models/RoReport/house_rent_ro_three.cs
Normal file
31
Models/RoReport/house_rent_ro_three.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models.RoThree
|
||||
{
|
||||
public class house_rent_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 product { get; set; }
|
||||
public string agency_name_th { get; set; }
|
||||
public string sector { get; set; }
|
||||
public List<house_rent_ro_three_detail> data { get; set; }
|
||||
}
|
||||
|
||||
public class house_rent_ro_three_detail
|
||||
{
|
||||
public string display_name_th { get; set; }
|
||||
public string position { get; set; }
|
||||
public string qualification { get; set; }
|
||||
public decimal? salary_rate { get; set; }
|
||||
public decimal? other_compensation { get; set; }
|
||||
public decimal? rent_per_month { get; set; }
|
||||
public decimal? rent_per_year { get; set; }
|
||||
public decimal? book { get; set; }
|
||||
public decimal? insurance { get; set; }
|
||||
public decimal? fee { get; set; }
|
||||
|
||||
public string station { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -23,6 +23,7 @@ namespace rmutr_report.Models
|
||||
public decimal? quantity { get; set; }
|
||||
public decimal? quantity_person { get; set; }
|
||||
public decimal? amount { get; set; }
|
||||
public decimal? total_amount { get; set; }
|
||||
public decimal? quantity_work { get; set; }
|
||||
public string unit { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user