ruoyi-service/ruoyi-account/src/main/java/com/ruoyi/account/controller/TAppUserController.java
@@ -725,6 +725,16 @@ .eq(TAppUser::getPhone,phone) .last("LIMIT 1"))); } /** * 通过手机号模糊查询用户 * @param phone * @return */ @GetMapping("/user/selectByPhoneLike") public R<List<TAppUser>> selectByPhoneLike(@RequestParam("phone") String phone){ return R.ok(appUserService.list(Wrappers.lambdaQuery(TAppUser.class) .eq(TAppUser::getPhone,phone))); } @ApiOperation(value = "签到", tags = {"小程序-个人中心-签到"}) @GetMapping(value = "/user/sign")