wzy
2021-06-15 9b8b1a8c660b04e49e4aa228858c45e2dd8f8c43
src/main/java/com/xcong/excoin/modules/coin/controller/CoinController.java
@@ -5,6 +5,7 @@
import javax.annotation.Resource;
import javax.validation.Valid;
import com.xcong.excoin.modules.coin.parameter.vo.AllWalletCoinVo;
import com.xcong.excoin.modules.coin.parameter.vo.MemberAccountMoneyChangeInfoVo;
import com.xcong.excoin.modules.coin.parameter.vo.MemberAgentIntoInfoVo;
import com.xcong.excoin.modules.coin.parameter.vo.MemberWalletAgentInfoVo;
@@ -37,6 +38,16 @@
   private CoinService coinService;
   
   /**
    *  获取我的总资产
    * @return
    */
   @ApiOperation(value = "获取我的总资产", notes = "获取我的总资产")
   @ApiResponses({@ApiResponse( code = 200, message = "success", response = AllWalletCoinVo.class)})
   @GetMapping(value = "/getAllWalletCoin")
   public Result getAllWalletCoin() {
      return coinService.getAllWalletCoin();
   }
   /**
    *  获取我的币币资产信息
    * @return
    */