34 lines
1.2 KiB
C#
34 lines
1.2 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace rmutr_report.Models.Hrrecruit
|
|
{
|
|
public class personnel_retire
|
|
{
|
|
public string directive_number { get; set; }
|
|
public string directive_date { get; set; }
|
|
public string year { get; set; }
|
|
public List<personnel_retire_detail> data { get; set; }
|
|
|
|
}
|
|
|
|
public class personnel_retire_detail
|
|
{
|
|
public string pertype { get; set; }
|
|
public string position_number { get; set; }
|
|
public string display_name_th { get; set; }
|
|
public string position_name { get; set; }
|
|
public string agency_name_th { get; set; }
|
|
public string area { get; set; }
|
|
public string expiration_date { get; set; }
|
|
public string cause_dead { get; set; }
|
|
public string cause_resign { get; set; }
|
|
public string cause_retire { get; set; }
|
|
public string cause_end_contract { get; set; }
|
|
public string cause_dismissal { get; set; }
|
|
public string cause_disengage { get; set; }
|
|
public string cause_sack { get; set; }
|
|
public string cause_other { get; set; }
|
|
public string reason_extinction { get; set; }
|
|
public string directive_number { get; set; }
|
|
}
|
|
} |