清理System.out.println
This commit is contained in:
@@ -367,7 +367,6 @@ public class MyUserController {
|
||||
@Transactional
|
||||
public R registerOrLogin(String tel, String code,String inviteCode) {
|
||||
String redisCode = redisTemplate.opsForValue().get("RegistCode" + tel);
|
||||
System.out.println(redisCode);
|
||||
if (StringUtils.isEmpty(redisCode)){
|
||||
return R.error(500,"验证码已过期,请重试");
|
||||
}
|
||||
@@ -466,7 +465,6 @@ public class MyUserController {
|
||||
@RequestParam("password") String password,
|
||||
@RequestParam("code") String code) {
|
||||
String redisCode = redisTemplate.opsForValue().get("RegistCode" + phone);
|
||||
System.out.println(redisCode);
|
||||
if (StringUtils.isEmpty(redisCode)){
|
||||
return R.error(500,"验证码已过期,请重试");
|
||||
}
|
||||
@@ -501,11 +499,6 @@ public class MyUserController {
|
||||
@RequestParam(value = "hsuserId", required = false) Integer hsuserId) {
|
||||
|
||||
String s = HttpUtil.get("http://101.201.146.165:8088/App-EH/app/phone.do?login&loginName="+ phone +"&loginPwd="+ password +"");
|
||||
|
||||
System.out.println(s);
|
||||
|
||||
|
||||
|
||||
//将结果转成json 取值
|
||||
JSONObject jsonObject = JSON.parseObject(s);
|
||||
|
||||
@@ -521,7 +514,6 @@ public class MyUserController {
|
||||
String nameCN = jsonObject.getJSONObject("obj").getString("nameCN");
|
||||
// String password = jsonObject.getJSONObject("obj").getString("pass");
|
||||
|
||||
System.out.println("=====================yljkOid=============================="+yljkOid);
|
||||
|
||||
|
||||
//查询 当前 花生账号 和 当前绑定的 一路健康账号是否有绑定 关系
|
||||
@@ -575,7 +567,6 @@ public class MyUserController {
|
||||
|
||||
String redisCode = redisTemplate.opsForValue().get("RegistCode" + phone);
|
||||
|
||||
System.out.println(redisCode);
|
||||
|
||||
if (StringUtils.isEmpty(redisCode)){
|
||||
return R.error(500,"短信验证码已过期,请重试");
|
||||
|
||||
Reference in New Issue
Block a user