1
This commit is contained in:
@@ -655,6 +655,26 @@ func GetCardBin(orgCode, cardNo string) (*lakala.BinInfo, error) {
|
||||
return result, err
|
||||
}
|
||||
|
||||
// SaveAuthentication 支付宝/微信认证
|
||||
func SaveAuthentication(param *lakala.AuthenticationInfo, authType string) error {
|
||||
return api.LaKaLaApi.SaveAuthentication(param, authType)
|
||||
}
|
||||
|
||||
// UpdateAuthentication 修改认证
|
||||
func UpdateAuthentication(param *lakala.UpdateAuthentication, authType string) error {
|
||||
return api.LaKaLaApi.UpdateAuthentication(param, authType)
|
||||
}
|
||||
|
||||
// QueryAuthentication 认证查询
|
||||
func QueryAuthentication(param *lakala.QueryAuthentication, authType string) (*lakala.QueryAuthenticationResp, error) {
|
||||
return api.LaKaLaApi.QueryAuthentication(param, authType)
|
||||
}
|
||||
|
||||
// AccountStatusQuery 开户状态查询
|
||||
func AccountStatusQuery(tradeMode, subMerchantId, merchantNo string) (map[string]interface{}, error) {
|
||||
return api.LaKaLaApi.AccountStatusQuery(tradeMode, subMerchantId, merchantNo)
|
||||
}
|
||||
|
||||
//#endregion
|
||||
|
||||
//#region 订单相关
|
||||
|
||||
Reference in New Issue
Block a user