This commit is contained in:
kamonwan taengsuk
2022-11-18 17:12:21 +07:00
parent f9865fb32f
commit f985c2ed42
4 changed files with 169 additions and 0 deletions

View File

@@ -58,6 +58,25 @@ namespace rmutr_report.Models.Graph
public int? quantity_person_return { get; set; }
}
public class academic_position_leave_graph
{
public string year { get; set; }
public string position_name { get; set; }
public string faculty_name { get; set; }
public string type_increase_academic_knowledge { get; set; }
public int? quantity_person { get; set; }
}
public class summary_academic_position_leave_graph
{
public string year { get; set; }
public string faculty_name { get; set; }
public string major_name { get; set; }
public string type_increase_academic_knowledge { get; set; }
public int? quantity_person_faculty { get; set; }
public int? quantity_person_major { get; set; }
public int? quantity_person_type_leave { get; set; }
}
}
// public class passer_join_project_agency_graph
// {