| | |
| | | import com.xcong.excoin.modules.coin.parameter.vo.OrderWalletCoinDealVo; |
| | | import com.xcong.excoin.modules.fish.dto.*; |
| | | import com.xcong.excoin.modules.fish.service.MemberCannonService; |
| | | import com.xcong.excoin.modules.fish.vo.AccountAvaBanlaceVo; |
| | | import com.xcong.excoin.modules.fish.vo.CannonSettingVo; |
| | | import com.xcong.excoin.modules.fish.vo.GoldAccountVo; |
| | | import com.xcong.excoin.modules.fish.vo.OwnCannonVo; |
| | | import com.xcong.excoin.modules.fish.vo.*; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import io.swagger.annotations.ApiResponse; |
| | |
| | | return memberCannonService.fishing(fishingDto); |
| | | } |
| | | |
| | | /** |
| | | * 获取奖品列表 |
| | | */ |
| | | @ApiOperation(value="获取奖品列表", notes="获取奖品列表") |
| | | @ApiResponses({@ApiResponse( code = 200, message = "success", response = AwardsVo.class)}) |
| | | @GetMapping(value="/getAwards") |
| | | public Result getAwards() { |
| | | return memberCannonService.getAwards(); |
| | | } |
| | | |
| | | /** |
| | | *点击抽奖 |
| | | */ |
| | | @ApiOperation(value = "点击抽奖") |
| | | @PostMapping(value = "/lotteryDraw") |
| | | public Result lotteryDraw(@RequestBody @Valid LotteryDrawDto lotteryDrawDto) { |
| | | return memberCannonService.lotteryDraw(lotteryDrawDto); |
| | | } |
| | | |
| | | |
| | | |
| | | } |