|
@@ -68,9 +68,9 @@ public class K3CategoryController {
|
|
@ApiOperation(value = "存货类别详情")
|
|
@ApiOperation(value = "存货类别详情")
|
|
@PostMapping("/detail")
|
|
@PostMapping("/detail")
|
|
public ResponseHelper<KingDeeCategory> detail(
|
|
public ResponseHelper<KingDeeCategory> detail(
|
|
- @ApiParam(value = "品类id",required = true)@RequestParam String categoryId
|
|
|
|
|
|
+ @ApiParam(value = "品类id",required = true)@RequestParam String id
|
|
) throws Exception {
|
|
) throws Exception {
|
|
- KingDeeCategory kingDeeCategory = k3CategoryLogic.detail(categoryId);
|
|
|
|
|
|
+ KingDeeCategory kingDeeCategory = k3CategoryLogic.detail(id);
|
|
return ResponseHelper.success(kingDeeCategory);
|
|
return ResponseHelper.success(kingDeeCategory);
|
|
}
|
|
}
|
|
|
|
|