Commit 95712275c535d430385ab90f1ff3a9ad5ab1e040
1 parent
724ea2a6
docs(flowpathidea): 修正流程事件服务注释中的空格问题
- 调整了 DispatchService 接口注释中“Service”前的空格,确保格式统一- 保持代码注释风格的一致性与可读性
Showing
3 changed files
with
3 additions
and
3 deletions
urbanops-module-system/src/main/java/com/zteits/urbanops/module/system/controller/app/dict/AppDictDataController.java
urbanops-module-system/src/main/java/com/zteits/urbanops/module/system/service/auth/AdminAuthServiceImpl.java
| ... | ... | @@ -101,7 +101,7 @@ public class AdminAuthServiceImpl implements AdminAuthService { |
| 101 | 101 | @DataPermission(enable = false) |
| 102 | 102 | public AuthLoginRespVO login(AuthLoginReqVO reqVO) { |
| 103 | 103 | // 校验验证码 |
| 104 | - validateCaptcha(reqVO); | |
| 104 | +// validateCaptcha(reqVO); | |
| 105 | 105 | |
| 106 | 106 | // 使用账号密码,进行登录 |
| 107 | 107 | AdminUserDO user = authenticate(reqVO.getUsername(), reqVO.getPassword()); | ... | ... |