add field commandDate & education

This commit is contained in:
Bright 2024-11-08 13:16:14 +07:00
parent 1de9e837f4
commit 119fa939ab
3 changed files with 6 additions and 2 deletions

View file

@ -41,6 +41,7 @@ namespace BMA.EHR.Placement.Service.Requests
public string? posLevelId { get; set; }
public string? posLevelName { get; set; }
public double? salary { get; set; }
public string? education { get; set; }
}
}

View file

@ -21,5 +21,6 @@ namespace BMA.EHR.Placement.Service.Requests
public string? RemarkHorizontal { get; set; }
public string? RemarkVertical { get; set; }
public int CommandYear { get; set; }
public DateTime? CommandExcecuteDate { get; set; }
}
}