Commit 0d2385c4 by zhangchen

Merge branch 'f-6.7.0' of 192.168.10.6:caosy/fun-golf-service into f-6.7.0

parents 7fa5bb57 530ee0cb
......@@ -63,7 +63,7 @@ public class OutdoorService {
* @return int
*/
private int getRandom() {
return (int) (Math.random() * 9000) + 1000;
return (int) (Math.random() * 900000) + 100000;
}
public VerifyResultBean sendVerifyCode(VerifyCodeBean request) {
......
......@@ -246,7 +246,7 @@ public class UserService {
* @return int
*/
private int getRandom() {
return (int) (Math.random() * 9000) + 1000;
return (int) (Math.random() * 900000) + 100000;
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment