| 123456789101112131415161718192021222324 |
- package wallet
- import (
- "mtp2_if/global/app"
- "mtp2_if/models"
- "github.com/gin-gonic/gin"
- )
- // QueryWalletAddress
- // @Summary 查询钱包地址
- // @Produce json
- // @Security ApiKeyAuth
- // @Param digitalaccountid query int true "数字账户ID"
- // @Success 200 {array} models.DigitalWalletAddress
- // @Failure 500 {object} app.Response
- // @Router /Wallet/QueryWalletAddress [get]
- // @Tags 钱包
- func QueryWalletAddress(c *gin.Context) {
- a := app.GinUtils{Gin: app.Gin{C: c}}
- m := models.DigitalWalletAddress{}
- a.DoBindReq(&m)
- a.DoGetDataI(&m)
- }
|