update 调整流程定义,修复使用leave6提交错误问题

This commit is contained in:
gssong
2025-03-15 22:53:31 +08:00
parent 92e9ed771b
commit c79e053bea
7 changed files with 59 additions and 56 deletions

View File

@ -54,7 +54,7 @@ public class TestLeaveServiceImpl implements ITestLeaveService {
* @return boolean
*/
public boolean eval(Integer leaveDays) {
if (leaveDays < 2) {
if (leaveDays <= 2) {
return true;
}
return false;