Compare commits

...

2 Commits

Author SHA1 Message Date
csyue 37784d49e7 Merge remote-tracking branch 'origin/dev' into dev 2024-04-15 15:46:20 +08:00
csyue f17a656374 int类型变量命名 2024-04-15 15:42:23 +08:00
1 changed files with 4 additions and 0 deletions

View File

@ -260,6 +260,10 @@ public class BackApplyController extends BaseController {
@PostMapping("examineList")
public AjaxResult examineList(@RequestBody BackApplyInfo record) {
try {
if (StringUtils.isNull(record)) {
return AjaxResult.error("参数错误");
}
List<BackApplyInfo> list = backApplyService.examineList(record);
return success(list);
} catch (Exception e) {