update graph report

This commit is contained in:
kamonwan taengsuk
2022-11-18 16:05:19 +07:00
parent 1714273172
commit f9865fb32f
10 changed files with 450 additions and 4 deletions

View File

@@ -18,6 +18,46 @@ namespace rmutr_report.Models.Graph
public int? quantity_trained_pass { get; set; }
public int? quantity_trained_notpass { get; set; }
}
public class person_study_leave_scholarships_graph
{
public string year { get; set; }
public string faculty_name { get; set; }
public string major_name { get; set; }
public int? quantity_study_leave { get; set; }
public int? quantity_fund { get; set; }
}
public class student_graduation_notification_graph{
public string year { get; set; }
public string faculty_name { get; set; }
public string major_name { get; set; }
public int? quantity_student_graduation { get; set; }
}
public class student_not_graduate_graph{
public string year { get; set; }
public string faculty_name { get; set; }
public string major_name { get; set; }
public int? quantity_not_graduate { get; set; }
}
public class study_results{
public string year { get; set; }
public string faculty_name { get; set; }
public string major_name { get; set; }
public int? quantity_notify_results { get; set; }
public int? quantity_not_notify_results { get; set; }
}
public class person_request_extend{
public string year { get; set; }
public int? quantity_person_request_extend { get; set; }
}
public class person_return_perform_duties {
public string year { get; set; }
public int? quantity_person_return { get; set; }
}
}
// public class passer_join_project_agency_graph
// {