no message

This commit is contained in:
wangh 2023-11-29 17:41:11 +08:00
parent 01641bbae2
commit c5d44f4d22
2 changed files with 5 additions and 5 deletions

View File

@ -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;

View File

@ -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);
} }
} }