add reports

This commit is contained in:
kamonwan taengsuk
2022-11-15 13:35:24 +07:00
parent 8a5101cfa9
commit 45037a9a80
9 changed files with 720 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
using System.Collections.Generic;
namespace rmutr_report.Models.HrDevelopment
{
public class academic_position_leave
{
public string year { get; set; }
public List<academic_position_leave_detail> data { get; set; }
}
public class academic_position_leave_detail
{
public string display_name_th { get; set; }
public string position_name { get; set; }
public string faculty_name { get; set; }
public string research { get; set; }
public string treatise { get; set; }
public string increase_academic_knowledge { get; set; }
public string title { get; set; }
public string location { get; set; }
public string period { get; set; }
public string expenses { get; set; }
public string directive_go { get; set; }
public string directive_back { get; set; }
public string return_date { get; set; }
public string contract_number { get; set; }
public string note { get; set; }
}
}