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();
|
MtInvitation invitation = new MtInvitation();
|
||||||
invitation.setUserId(ljUser.getId());
|
invitation.setUserId(ljUser.getId());
|
||||||
invitation.setStoreId(storeId);
|
invitation.setStoreId(storeId);
|
||||||
invitation.setStaffid(nowAccountInfo.getStaffId());
|
invitation.setStaffId(nowAccountInfo.getStaffId());
|
||||||
invitation.setChainStoreId(chainStoreId);
|
invitation.setChainStoreId(chainStoreId);
|
||||||
invitationMapper.insert(invitation);
|
invitationMapper.insert(invitation);
|
||||||
return row;
|
return row;
|
||||||
|
@ -834,8 +834,8 @@ public class MemberServiceImpl extends ServiceImpl<MtUserMapper, MtUser> impleme
|
|||||||
MtInvitation mtInvitation = new MtInvitation();
|
MtInvitation mtInvitation = new MtInvitation();
|
||||||
mtInvitation.setUserId(user.getId());
|
mtInvitation.setUserId(user.getId());
|
||||||
mtInvitation.setStoreId(Integer.parseInt(storeId));
|
mtInvitation.setStoreId(Integer.parseInt(storeId));
|
||||||
mtInvitation.setStaffid(Integer.parseInt(staffId));
|
mtInvitation.setStaffId(Integer.parseInt(staffId));
|
||||||
mtInvitation.setInviterid(Integer.parseInt(inviterId));
|
mtInvitation.setInviterId(Integer.parseInt(inviterId));
|
||||||
if (!ObjectUtil.isEmpty(store)){
|
if (!ObjectUtil.isEmpty(store)){
|
||||||
mtInvitation.setChainStoreId(store.getChainStoreId());
|
mtInvitation.setChainStoreId(store.getChainStoreId());
|
||||||
}
|
}
|
||||||
@ -859,8 +859,8 @@ public class MemberServiceImpl extends ServiceImpl<MtUserMapper, MtUser> impleme
|
|||||||
MtInvitation mtInvitation = new MtInvitation();
|
MtInvitation mtInvitation = new MtInvitation();
|
||||||
mtInvitation.setUserId(user.getId());
|
mtInvitation.setUserId(user.getId());
|
||||||
mtInvitation.setStoreId(Integer.parseInt(storeId));
|
mtInvitation.setStoreId(Integer.parseInt(storeId));
|
||||||
mtInvitation.setStaffid(Integer.parseInt(staffId));
|
mtInvitation.setStaffId(Integer.parseInt(staffId));
|
||||||
mtInvitation.setInviterid(Integer.parseInt(inviterId));
|
mtInvitation.setInviterId(Integer.parseInt(inviterId));
|
||||||
mtInvitationMapper.insert(mtInvitation);
|
mtInvitationMapper.insert(mtInvitation);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user