Commit 45b1d178 by 魏文甫

Merge branch 'wei_master' into '105'

update

See merge request !17
2 parents 614915e9 f882f251
......@@ -65,13 +65,13 @@ public class UserServiceImpl implements UserService {
loginUser.setSignInCount(1);
tKzyUserIntegralFlowing.setIntegral(1);
} else {
if (loginUser.getSignInCount() <= 2) {
if (loginUser.getSignInCount() < 2) {
integral = 1;
} else if (loginUser.getSignInCount() == 3) {
} else if (loginUser.getSignInCount() == 2) {
integral = 3;
} else if (loginUser.getSignInCount() == 4) {
} else if (loginUser.getSignInCount() == 3) {
integral = 1;
} else if (loginUser.getSignInCount() == 5) {
} else if (loginUser.getSignInCount() == 4) {
integral = 5;
tKzyUserIntegralFlowing.setIntegral(5);
} else {
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!