编制上报 编制变更

This commit is contained in:
dxfeng 2022-06-08 09:10:47 +08:00
parent 3feac93ed0
commit 64cbb907e0
1 changed files with 2 additions and 2 deletions

View File

@ -69,10 +69,10 @@ public class StaffBO {
*/
private static int parseLackStatus(int staffNum, int permanentNum) {
if (staffNum == permanentNum) {
return 1;
return 2;
}
if (staffNum > permanentNum) {
return 2;
return 1;
}
return 3;
}