bug fixed

This commit is contained in:
kamonwan taengsuk
2022-11-08 11:57:26 +07:00
parent a9f0f94392
commit 5f7eaefaa5
3 changed files with 41 additions and 17 deletions

View File

@@ -0,0 +1,25 @@
using System.Collections.Generic;
namespace rmutr_report.Models.Hrregister
{
public class hr_offer_insignia
{
public string year_name_th { get; set; }
public List<hr_offer_insignia_detail> data { get; set; }
public string money { get; set; }
}
public class hr_offer_insignia_detail
{
public string insignia_class { get; set; }
public string display_name_th { get; set; }
public string position_level { get; set; }
public string hold_position_date { get; set; }
public decimal? salary { get; set; }
public string position_current { get; set; }
public string insignia_receive { get; set; }
public string insignia_receive_date { get; set; }
public string insignia_request { get; set; }
public string note { get; set; }
}
}

View File

@@ -14,7 +14,6 @@ namespace rmutr_report.Models.Hrregister
public List<hr_count_position> summary { get; set; }
public string total1 { get; set; }
public string total2 { get; set; }
public string text { get; set; }
}