陶杰
2024-12-24 5b275c38c82bd54496dc2b2d268cde1ec9ec2b29
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")