| | |
| | | import com.dsh.communityWorldCup.entity.WorldCup; |
| | | import com.dsh.communityWorldCup.model.*; |
| | | import com.dsh.communityWorldCup.util.ResultUtil; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @author zhibing.pu |
| | |
| | | * @param id |
| | | * @return |
| | | */ |
| | | WorldCupInfo getWorldCupInfo(Integer id); |
| | | WorldCupInfo getWorldCupInfo(Integer id, String lon, String lat); |
| | | |
| | | |
| | | /** |
| | | * 报名前校验支付方式 |
| | | * @param checkPaymentMethod |
| | | * @return |
| | | */ |
| | | CheckPaymentMethodVo checkPaymentMethod(CheckPaymentMethod checkPaymentMethod); |
| | | |
| | | |
| | | /** |
| | | * 报名世界杯 |
| | | * @param paymentWorldCup |
| | | * @return |
| | | */ |
| | | ResultUtil paymentWorldCup(PaymentWorldCup paymentWorldCup); |
| | | |
| | | |
| | | /** |
| | | * 第三方支付完成后回调逻辑处理 |
| | | * @param code |
| | | * @param outTradeNo |
| | | * @return |
| | | */ |
| | | ResultUtil paymentWorldCupCallback(String code, String outTradeNo); |
| | | |
| | | |
| | | /** |
| | | * 获取比赛管理列表数据 |
| | | * @param worldCupListAll |
| | | * @return |
| | | */ |
| | | Map<String, Object> getWorldCupListAll(WorldCupListAll worldCupListAll); |
| | | } |