陶杰
2025-01-08 ae1471f378f399f76518539ec8992e64a3673436
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")