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:38:00 +08:00

View File

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