tj
2025-04-21 b428226d0cf78bbb843fa17bffb1e338230fae6c
src/main/java/com/mzl/flower/web/customer/CustomerController.java
@@ -89,4 +89,10 @@
        customerService.isEnable(id);
        return returnData(R.SUCCESS.getCode(),null);
    }
    @GetMapping("/info/{phone}")
    @ApiOperation(value = "用户详情", notes = "用户详情")
    public ResponseEntity<ReturnDataDTO<CustomerDTO>> findCustomerByPhone(@PathVariable("phone") String phone) {
        return returnData(R.SUCCESS.getCode(),customerService.findCustomerByPhone(phone));
    }
}