luofl
2025-04-11 a9edc2f62628007e2c5e86d416d484780238f13f
cloud-server-account/src/main/java/com/dsh/account/controller/RefereeController.java
@@ -69,7 +69,7 @@
     * @return
     */
    @PostMapping("/referee/getRefereeByPhone")
    public Referee getRefereeByPhone(String phone){
    public Referee getRefereeByPhone(@RequestBody String phone){
        return refereeService.getOne(new QueryWrapper<Referee>()
                .eq("phone", phone).ne("state", 3));
    }