Files
OMS/app/erpapi/lib/bind/config.php
2025-12-28 23:13:25 +08:00

45 lines
1012 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/**
* Copyright © ShopeX http://www.shopex.cn. All rights reserved.
* See LICENSE file for license details.
*/
/**
* @author ykm 2018/3/20
* @describe 绑定相关
*/
class erpapi_bind_config extends erpapi_config
{
/**
* 获取_query_params
* @param mixed $method method
* @param mixed $params 参数
* @return mixed 返回结果
*/
public function get_query_params($method, $params){
return array();
}
/**
* 获取_url
* @param mixed $method method
* @param mixed $params 参数
* @param mixed $realtime realtime
* @return mixed 返回结果
*/
public function get_url($method, $params, $realtime){
$url = rtrim(MATRIX_RELATION_URL, '/').'/api.php'; #矩阵
return $url;
}
/**
* gen_sign
* @param mixed $params 参数
* @param mixed $method method
* @return mixed 返回值
*/
public function gen_sign($params,$method=''){
return null;
}
}