add report hr

This commit is contained in:
kamonwan taengsuk
2022-11-06 18:44:29 +07:00
parent c2bd91542e
commit 6f84591500
3 changed files with 316 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
using System.Collections.Generic;
namespace rmutr_report.Models.Hrregister
{
public class hr_position_manage
{
public string academic_year_name_th { get; set; }
public string position_manage_type { get; set; }
public string status { get; set; }
public List<hr_position_manage_detail> data { get; set; }
public string total1 { get; set; }
public string total2 { get; set; }
}
public class hr_position_manage_detail
{
public string position_manage_name { get; set; }
public decimal? position_manage_salary { get; set; }
public decimal? compensation { get; set; }
public string position_id { get; set; }
public string display_name_th { get; set; }
public string agency_name_th { get; set; }
public string date_office { get; set; }
public string date_term_of_ffice { get; set; }
public string directive { get; set; }
public string money1 { get; set; }
public string money2 { get; set; }
}
}