add graph report
This commit is contained in:
61
Models/Graph/graph.cs
Normal file
61
Models/Graph/graph.cs
Normal file
@@ -0,0 +1,61 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models.Graph
|
||||
{
|
||||
public class passer_join_project_graph
|
||||
{
|
||||
public string year { get; set; }
|
||||
|
||||
public string agency_name_th { get; set; }
|
||||
|
||||
//public int? quantity_person { get; set; }
|
||||
public int? quantity_trained { get; set; }
|
||||
}
|
||||
public class train_graph
|
||||
{
|
||||
public string year { get; set; }
|
||||
//public string agency_name_th { get; set; }
|
||||
public int? quantity_trained_pass { get; set; }
|
||||
public int? quantity_trained_notpass { get; set; }
|
||||
}
|
||||
}
|
||||
// public class passer_join_project_agency_graph
|
||||
// {
|
||||
// public string agency_name_th { get; set; }
|
||||
// public int? count_person { get; set; }
|
||||
// public string pertype { get; set; }
|
||||
// public int? count_person_pertype { get; set; }
|
||||
// public int? quantity_project { get; set; }
|
||||
// public decimal? registration_fee { get; set; }
|
||||
// public List<passer_join_project_agency_graph_detail> data { get; set; }
|
||||
// }
|
||||
// public class passer_join_project_agency_graph_detail
|
||||
// {
|
||||
// public string pertype { get; set; }
|
||||
// public int? count_person_pertype { get; set; }
|
||||
// public List<passer_join_project_agency_graph_data_detail> data_detail { get; set; }
|
||||
// }
|
||||
//
|
||||
// public class passer_join_project_agency_graph_data_detail
|
||||
// {
|
||||
// public string display_name_th { get; set; }
|
||||
// public int? quantity_project { get; set; }
|
||||
// // public string project_name { get; set; }
|
||||
// // public string course_organizer { get; set; }
|
||||
// // public string project_date { get; set; }
|
||||
// // public string project_time { get; set; }
|
||||
// // public string location { get; set; }
|
||||
// public decimal? registration_fee { get; set; }
|
||||
// //public string complete_date { get; set; }
|
||||
// }
|
||||
// public class person_academic_and_supportlines_detail
|
||||
// {
|
||||
// public string agency_name_th { get; set; }
|
||||
// public decimal? quantity_person { get; set; }
|
||||
// public decimal? percentage_1 { get; set; }
|
||||
// public decimal? percentage_2 { get; set; }
|
||||
// public decimal? percentage_3 { get; set; }
|
||||
// public decimal? percentage_4 { get; set; }
|
||||
// public decimal? percentage_5 { get; set; }
|
||||
// public decimal? total { get; set; }
|
||||
// }
|
||||
Reference in New Issue
Block a user