bug fixed
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
kamonwan taengsuk
2023-08-04 16:55:05 +07:00
parent 6e389605d9
commit bc55d24121
21 changed files with 224 additions and 124 deletions

View File

@@ -19,7 +19,9 @@ namespace rmutr_report.Models.RoThree
public string position_name { get; set; }
public Guid? agency_uid { get; set; }
public Guid? budget_plan_uid { get; set; }
public Guid? budget_project_uid { get; set; }
//
public string college_faculty_name_th { get; set; }
public string budget_project_name_th { get; set; }
@@ -34,16 +36,16 @@ namespace rmutr_report.Models.RoThree
public Guid? current_position_uid { get; set; }
public Guid? new_position_uid { get; set; }
public Guid? current_qualification_uid { get; set; }
public Guid? new_qualification_uid { get; set; }
//
public string current_position { get; set; }
public string new_position { get; set; }
public string new_position { get; set; }
public string current_qualification { get; set; }
public string new_qualification { get; set; }
[Column(TypeName ="decimal(18,2)")]
public decimal? current_salary { get; set; }
[Column(TypeName ="decimal(18,2)")]
public decimal? new_salary { get; set; }
[Column(TypeName = "decimal(18,2)")] public decimal? current_salary { get; set; }
[Column(TypeName = "decimal(18,2)")] public decimal? new_salary { get; set; }
public string budget_income_qualification_file_1 { get; set; }
public string budget_income_qualification_file_2 { get; set; }
}