|
@@ -118,4 +118,16 @@ public class BizLoadPointController {
|
|
public CommonResult<BizLoadPoint> detail(@Valid BizLoadPointIdParam bizLoadPointIdParam) {
|
|
public CommonResult<BizLoadPoint> detail(@Valid BizLoadPointIdParam bizLoadPointIdParam) {
|
|
return CommonResult.data(bizLoadPointService.detail(bizLoadPointIdParam));
|
|
return CommonResult.data(bizLoadPointService.detail(bizLoadPointIdParam));
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 获取装货点位列表
|
|
|
|
+ *
|
|
|
|
+ * @author fanzherong
|
|
|
|
+ * @date 2025/05/29 14:54
|
|
|
|
+ */
|
|
|
|
+ @Operation(summary = "获取装货点位列表")
|
|
|
|
+ @GetMapping("/biz/bizloadpoint/getList")
|
|
|
|
+ public CommonResult<List<BizLoadPoint>> getList() {
|
|
|
|
+ return CommonResult.data(bizLoadPointService.getList());
|
|
|
|
+ }
|
|
}
|
|
}
|