This commit is contained in:
邹宗楠
2025-07-04 10:03:38 +08:00
parent 9a051bf147
commit 905f8bd2e0
7 changed files with 81 additions and 25 deletions

View File

@@ -794,3 +794,19 @@ func (c *LaKaLaController) WithdrawalList() {
return
})
}
// GetCardBin 卡BIN查询
// @Title 卡BIN查询
// @Description 卡BIN查询
// @Param token header string true "认证token"
// @Param orgCode query string true "机构号"
// @Param cardNo query string true "卡号"
// @Success 200 {object} controllers.CallResult
// @Failure 200 {object} controllers.CallResult
// @router /GetCardBin [get]
func (c *LaKaLaController) GetCardBin() {
c.callGetCardBin(func(params *tLakalaGetCardBinParams) (retVal interface{}, errCode string, err error) {
retVal, err = lakalaServer.GetCardBin(params.OrgCode, params.CardNo)
return
})
}