|
@@ -228,7 +228,8 @@ public class CustomPlanController {
|
|
|
@RequestParam(value = "sid", required = false) String sid,
|
|
|
@RequestParam(value = "startTime", required = false) String startTime,
|
|
|
@RequestParam(value = "endTime", required = false) String endTime) {
|
|
|
- return ResultRespone.success(customPlanService.getChildPlanInfo(childPlanId, sid, startTime, endTime));
|
|
|
+ Long companyId = schedulerService.getCompanyId(SecurityUtils.getUserId());
|
|
|
+ return ResultRespone.success(customPlanService.getChildPlanInfo(childPlanId, sid, startTime, endTime, companyId));
|
|
|
}
|
|
|
|
|
|
|