cloudroam
2025-02-08 85d5dea7408e1ae74e4c7f460bf84caae3754753
src/main/java/com/mzl/flower/web/v2/district/DistrictGaodeController.java
@@ -54,8 +54,9 @@
    @GetMapping("/{id}")
    @ApiOperation(value = "详情", notes = "详情")
    public DistrictDO get(@PathVariable String id) {
        return districtService.getById(id);
    public ResponseEntity<DistrictDO> get(@PathVariable String id) {
        return returnData(R.SUCCESS.getCode(),districtService.getById(id));
    }
    @GetMapping("/page")