| | |
| | | import com.dsh.account.entity.RechargeRecords; |
| | | import com.dsh.account.entity.TAppUser; |
| | | import com.dsh.account.entity.VipPayment; |
| | | import com.dsh.account.feignclient.activity.UserConponClient; |
| | | import com.dsh.account.model.IncomeQuery; |
| | | import com.dsh.account.model.dto.VipPaymentDto; |
| | | import com.dsh.account.model.dto.VipRefundDto; |
| | |
| | | private IVipPaymentService vipPaymentService; |
| | | @Autowired |
| | | private TAppUserService appUserService; |
| | | @Autowired |
| | | private UserConponClient userConponClient; |
| | | |
| | | |
| | | /** |
| | |
| | | appUserService.updateById(appUser); |
| | | vipPayment.setPayStatus(3); |
| | | vipPaymentService.updateById(vipPayment); |
| | | // 将未使用的门票优惠券设置为已过期 |
| | | userConponClient.setStatusVipDetail(vipPayment.getId()); |
| | | return "200"; |
| | | } |
| | | |