This commit is contained in:
kamonwan taengsuk
2022-11-07 18:34:41 +07:00
parent eb9d120c11
commit a9f0f94392
3 changed files with 51 additions and 46 deletions

View File

@@ -11,11 +11,11 @@ namespace rmutr_report.Models.Hrregister
public string status { get; set; }
public string agency_name_th { get; set; }
public List<hr_position_manage_detail> data { get; set; }
public List<hr_count_position> summary { get; set; }
public string total1 { get; set; }
public string total2 { get; set; }
public int? professor { get; set; }
public int? associate_rofessor { get; set; }
public int? assistant_professor { get; set; }
public string text { get; set; }
}
public class hr_position_manage_detail
@@ -36,4 +36,10 @@ namespace rmutr_report.Models.Hrregister
public string money1 { get; set; }
public string money2 { get; set; }
}
public class hr_count_position
{
public string position_name { get; set; }
public int? count_position { get; set; }
}
}