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