44 lines
1.1 KiB
C#
44 lines
1.1 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace rmutr_report.Models.Hr
|
|
{
|
|
public class personnel_summary
|
|
{
|
|
public string data_date {get; set; }
|
|
public int? total_pertype {get; set; }
|
|
public List<personnel_type> personnel_types {get; set; }
|
|
public List<lineofwork> lineofworks {get; set; }
|
|
public List<position> positions {get; set; }
|
|
public List<area> areas {get; set; }
|
|
public List<qualification> qualifications {get; set; }
|
|
}
|
|
|
|
public class personnel_type
|
|
{
|
|
public string type_name { get; set; }
|
|
public int? count { get; set; }
|
|
}
|
|
|
|
public class lineofwork
|
|
{
|
|
public string work_name { get; set; }
|
|
public int? count { get; set; }
|
|
}
|
|
public class position
|
|
{
|
|
public string position_name { get; set; }
|
|
public int? count { get; set; }
|
|
}
|
|
|
|
public class area
|
|
{
|
|
public string area_name { get; set; }
|
|
public int? count { get; set; }
|
|
}
|
|
|
|
public class qualification
|
|
{
|
|
public string qualification_name { get; set; }
|
|
public int? count { get; set; }
|
|
}
|
|
} |