| | |
| | | import com.dsh.account.model.vo.CoachSerchVO; |
| | | import com.dsh.account.model.vo.RechargeRecordsVO; |
| | | import com.dsh.account.service.*; |
| | | import net.bytebuddy.asm.Advice; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | |
| | | @Autowired |
| | | private TAppUserService appUserService; |
| | | |
| | | |
| | | /** |
| | | * 充值记录列表数据 |
| | | */ |
| | |
| | | List<RechargeRecords> payStatus = rechargeRecordsService.list(new QueryWrapper<RechargeRecords>().eq("payStatus", 2)); |
| | | for (RechargeRecords list : payStatus) { |
| | | TAppUser byId = appUserService.getById(list.getAppUserId()); |
| | | Integer addUserId = byId.getAddUserId(); |
| | | |
| | | } |
| | | return payStatus; |
| | | } |