From 85c8ab268b21da6dde91c2b05638804ce0f103ec Mon Sep 17 00:00:00 2001 From: Helius <wangdoubleone@gmail.com> Date: Mon, 25 May 2020 12:08:05 +0800 Subject: [PATCH] 新增get请求swagger提示示例 --- src/main/java/com/xcong/excoin/modules/home/service/MemberQuickBuySaleService.java | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/xcong/excoin/modules/home/service/MemberQuickBuySaleService.java b/src/main/java/com/xcong/excoin/modules/home/service/MemberQuickBuySaleService.java index a4e8413..6ab4ba5 100644 --- a/src/main/java/com/xcong/excoin/modules/home/service/MemberQuickBuySaleService.java +++ b/src/main/java/com/xcong/excoin/modules/home/service/MemberQuickBuySaleService.java @@ -1,9 +1,20 @@ package com.xcong.excoin.modules.home.service; import com.baomidou.mybatisplus.extension.service.IService; +import com.xcong.excoin.common.response.Result; +import com.xcong.excoin.modules.home.dto.MemberQuickBuySaleCommitDto; +import com.xcong.excoin.modules.home.dto.MemberQuickBuySaleDto; import com.xcong.excoin.modules.home.entity.MemberQuickBuySaleEntity; public interface MemberQuickBuySaleService extends IService<MemberQuickBuySaleEntity> { + public Result recharge(MemberQuickBuySaleDto memberQuickBuySaleDto); + public Result commitPay(MemberQuickBuySaleCommitDto memberQuickBuySaleCommitDto); + + public Result selectById(Long id); + + public Result sell(); + + public Result cancelRecharge(Long id); } -- Gitblit v1.9.1