| | |
| | | package com.dsh.competition.feignclient.course; |
| | | |
| | | import com.dsh.competition.feignclient.course.model.PaymentDeductionClassHour; |
| | | import com.dsh.competition.model.PayCourseRes; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author zhibing.pu |
| | |
| | | Integer queryResidueClassHour(Integer id); |
| | | |
| | | |
| | | @PostMapping("/coursePackagePayment/queryResidueClassHourById") |
| | | Integer queryResidueClassHourById(Long id); |
| | | |
| | | |
| | | /** |
| | | * 支付扣减学员课时 |
| | | */ |
| | |
| | | */ |
| | | @PostMapping("/coursePackagePayment/rollbackPaymentDeductionClassHour") |
| | | void rollbackPaymentDeductionClassHour(PaymentDeductionClassHour paymentDeductionClassHour); |
| | | |
| | | @PostMapping("/coursePackagePayment/paymentCompetitionCourseList") |
| | | List<PayCourseRes> paymentCompetitionCourseList(String s); |
| | | |
| | | |
| | | } |