无忧付支付订单

This commit is contained in:
GYJ
2024-12-04 13:27:44 +08:00
parent 2e6ffef10a
commit 1c5bae5118
6 changed files with 211 additions and 103 deletions

View File

@@ -30,6 +30,6 @@ public interface InviteService {
PageUtils inviteAnalysis(int page,int limit, String time, Integer flag);
Map updateInvite(UserEntity userEntity, String format, Long userId, BigDecimal price);
Map<String,Object> updateInvite(UserEntity userEntity, String format, Long userId, BigDecimal price);
}

View File

@@ -188,7 +188,7 @@ public class InviteServiceImpl extends ServiceImpl<InviteDao, Invite> implements
@Override
public Map updateInvite(UserEntity userEntity, String format, Long userId, BigDecimal price) {
public Map<String,Object> updateInvite(UserEntity userEntity, String format, Long userId, BigDecimal price) {
Map<String,Object> result=new HashMap<>();
if (userEntity != null && userId != null && price != null) {
Invite invite1 = inviteDao.selectInviteByUser(userEntity.getUserId(), userId,1);