Signed-off-by: anderx <312518615@qq.com>
@@ -423,11 +423,15 @@ public class OutPersonnelListBo {
public String getStatusName() {
if (this.status!=null) {
if (status==0) {
- return "在职(试用期)";
+ return "实习生";
}else if (status==1) {
- return "在职(正式工)";
+ return "在职(试用期)";
}else if (status==2) {
- return "离职";
+ return "在职(合同期)";
+ }else if (status==3) {
+ return "兼职";
+ }else if (status==4) {
+ return "已离职";
}
return "";