|
@@ -67,7 +67,7 @@ public class HwkController {
|
67
|
67
|
@Operation(summary = "根据仓房id获得货位卡信息")
|
68
|
68
|
@Parameter(name = "cfId", description = "仓房编号", required = true, example = "1024")
|
69
|
69
|
@PreAuthorize("@ss.hasPermission('coding:hwk:queryByCfId')")
|
70
|
|
- public CommonResult<HwkRespVO> getHwkByCfId(@RequestParam("id") Long cfId) {
|
|
70
|
+ public CommonResult<HwkRespVO> getHwkByCfId(@RequestParam("cfId") Long cfId) {
|
71
|
71
|
HwkDO hwk = hwkService.getHwkByCfId(cfId);
|
72
|
72
|
return success(BeanUtils.toBean(hwk, HwkRespVO.class));
|
73
|
73
|
}
|