update
This commit is contained in:
25
Models/RoThree/compensation_head.cs
Normal file
25
Models/RoThree/compensation_head.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models.RoThree
|
||||
{
|
||||
public class compensation_head
|
||||
{
|
||||
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_head_detail> data { get; set; }
|
||||
|
||||
}
|
||||
|
||||
public class compensation_head_detail
|
||||
{
|
||||
public string department { get; set; }
|
||||
public string display_name { get; set; }
|
||||
public decimal? rate { get; set; }
|
||||
public decimal? budget_amount { get; set; }
|
||||
public string remark { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user