no message
This commit is contained in:
parent
01641bbae2
commit
c5d44f4d22
@ -229,7 +229,7 @@ public class LJUserServiceImpl extends ServiceImpl<LJUserMapper, LJUser> impleme
|
||||
MtInvitation invitation = new MtInvitation();
|
||||
invitation.setUserId(ljUser.getId());
|
||||
invitation.setStoreId(storeId);
|
||||
invitation.setStaffid(nowAccountInfo.getStaffId());
|
||||
invitation.setStaffId(nowAccountInfo.getStaffId());
|
||||
invitation.setChainStoreId(chainStoreId);
|
||||
invitationMapper.insert(invitation);
|
||||
return row;
|
||||
|
@ -834,8 +834,8 @@ public class MemberServiceImpl extends ServiceImpl<MtUserMapper, MtUser> impleme
|
||||
MtInvitation mtInvitation = new MtInvitation();
|
||||
mtInvitation.setUserId(user.getId());
|
||||
mtInvitation.setStoreId(Integer.parseInt(storeId));
|
||||
mtInvitation.setStaffid(Integer.parseInt(staffId));
|
||||
mtInvitation.setInviterid(Integer.parseInt(inviterId));
|
||||
mtInvitation.setStaffId(Integer.parseInt(staffId));
|
||||
mtInvitation.setInviterId(Integer.parseInt(inviterId));
|
||||
if (!ObjectUtil.isEmpty(store)){
|
||||
mtInvitation.setChainStoreId(store.getChainStoreId());
|
||||
}
|
||||
@ -859,8 +859,8 @@ public class MemberServiceImpl extends ServiceImpl<MtUserMapper, MtUser> impleme
|
||||
MtInvitation mtInvitation = new MtInvitation();
|
||||
mtInvitation.setUserId(user.getId());
|
||||
mtInvitation.setStoreId(Integer.parseInt(storeId));
|
||||
mtInvitation.setStaffid(Integer.parseInt(staffId));
|
||||
mtInvitation.setInviterid(Integer.parseInt(inviterId));
|
||||
mtInvitation.setStaffId(Integer.parseInt(staffId));
|
||||
mtInvitation.setInviterId(Integer.parseInt(inviterId));
|
||||
mtInvitationMapper.insert(mtInvitation);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user