Merge remote-tracking branch 'origin/main'

This commit is contained in:
2025-12-01 16:50:52 +08:00

View File

@@ -81,6 +81,12 @@ public class SysOaProjectController extends BaseController {
ExcelUtil.exportExcel(list, "项目管理", SysOaProjectVo.class, response);
}
@GetMapping("/maxCode/{prefix}")
public R<SysOaProjectVo> maxCode(@PathVariable String prefix) {
return R.ok(iSysOaProjectService.getMaxCode(prefix));
}
/**
* 获取项目管理详细信息
*
@@ -279,10 +285,4 @@ public class SysOaProjectController extends BaseController {
return toAjax(iSysOaProjectService.postponeProject(bo));
}
@GetMapping("/maxCode/{prefix}")
public R<SysOaProjectVo> maxCode(@PathVariable String prefix) {
return R.ok(iSysOaProjectService.getMaxCode(prefix));
}
}