| 12345678910111213141516171819202122232425 |
- package bank
- import (
- "mtp2_if/global/app"
- "mtp2_if/models"
- "github.com/gin-gonic/gin"
- )
- // QueryBankCusBankExtendConfigs
- // @Summary 查询托管银行扩展配置信息
- // @Produce json
- // @Security ApiKeyAuth
- // @Param cusbankid query string true "托管银行编号"
- // @Param extendbiztype query int false "扩展业务类型 - 1:签约 2:入金 3:出金 4:签约信息修改"
- // @Success 200 {array} models.Bankcusbankextendconfig
- // @Failure 500 {object} app.Response
- // @Router /Bank/QueryBankCusBankExtendConfigs [get]
- // @Tags 银行
- func QueryBankCusBankExtendConfigs(c *gin.Context) {
- a := app.GinUtils{Gin: app.Gin{C: c}}
- m := models.Bankcusbankextendconfig{}
- a.DoBindReq(&m)
- a.DoGetDataEx(&m)
- }
|