!67 编制上报 编制变更

Merge pull request !67 from dxfeng/feature/dxf
This commit is contained in:
dxfeng 2022-06-08 01:47:36 +00:00 committed by Gitee
commit 4d9deca782
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
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;
}