Merge branch '0.8.X' of https://gitee.com/hdka/klp-oa into 0.8.X

This commit is contained in:
砂糖
2025-12-17 15:44:30 +08:00

View File

@@ -99,8 +99,8 @@ public class WmsDeliveryPlanCoilOperateController extends BaseController {
//新增一个接口用来查询钢卷列表信息以及操作内容 参数分别是planId和coilIds(逗号分隔得字符串) get请求
@GetMapping("/coilOperate")
public R<List<WmsDeliveryPlanCoilOperateVo>> getCoilOperate(@RequestParam Long planId,
@RequestParam String coilIds) {
public R<List<WmsDeliveryPlanCoilOperateVo>> getCoilOperate(@RequestParam(required = false) Long planId,
@RequestParam(required = false) String coilIds) {
List<WmsDeliveryPlanCoilOperateVo> list = iWmsDeliveryPlanCoilOperateService.getCoilOperate(planId, coilIds);
return R.ok(list);
}