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