排产增删改查

This commit is contained in:
2025-07-15 16:14:56 +08:00
parent b717b07049
commit 6b53156e1e
8 changed files with 39 additions and 10 deletions

View File

@@ -27,7 +27,7 @@ import com.ruoyi.common.core.page.TableDataInfo;
/**
* 项目排产
*
* @author liujingchao
* @author ruoyi
* @date 2025-07-15
*/
@Validated
@@ -63,7 +63,7 @@ public class OaReportScheduleController extends BaseController {
*/
@GetMapping("/{scheduleId}")
public R<OaReportScheduleVo> getInfo(@NotNull(message = "主键不能为空")
@PathVariable Long scheduleId) {
@PathVariable Long scheduleId) {
return R.ok(iOaReportScheduleService.queryById(scheduleId));
}