Browse Source

修改列表转型

Signed-off-by: anderx <312518615@qq.com>
anderx 5 years ago
parent
commit
da417af40d
1 changed files with 7 additions and 3 deletions
  1. 7 3
      src/main/java/com/goafanti/personnel/bo/OutPersonnelListBo.java

+ 7 - 3
src/main/java/com/goafanti/personnel/bo/OutPersonnelListBo.java

@@ -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 "";