Commit baf65df7 authored by liqin's avatar liqin 💬

bug fixed

parent 7fd98a1d
......@@ -58,4 +58,6 @@ public interface UserService {
R<AerialDeliveryVo> queryAerialDelivery();
R<Boolean> setHeadImage(String userId, String headImage);
R<Boolean> fillInInviteCode(String userId, String inviteCode);
}
......@@ -230,6 +230,7 @@ public class UserServiceImpl extends ServiceImpl<UsersMapper, User> implements U
return R.ok(0, true);
}
@Override
public R<Boolean> fillInInviteCode(String userId, String inviteCode) {
log.info("shop-mall[]UserServiceImpl[]fillInInviteCode[]input.param.userId,inviteCode:" + userId, inviteCode);
if (StringUtils.isBlank(userId) || StringUtils.isBlank(inviteCode)) {
......
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 to comment