Commit ffce4514 by 王召彬

获取支付证书

parent 08b07a56
...@@ -90,7 +90,8 @@ class CfgCenter ...@@ -90,7 +90,8 @@ class CfgCenter
$result = $dbConn->get("seller", ['oemId'], ['storeId' => $storeId]); $result = $dbConn->get("seller", ['oemId'], ['storeId' => $storeId]);
$oemId = (int)$result['oemId']; $oemId = (int)$result['oemId'];
$dbConn = self::dbConnect();//连接配置库 $dbConn = self::dbConnect();//连接配置库
$result = $dbConn->get("config", ['certPem', 'keyPem'], ['oemId' => $oemId, 'name' => $keyName]); // 注意,需要返回oemId字段
$result = $dbConn->get("config", ['oemId', 'certPem', 'keyPem'], ['oemId' => $oemId, 'name' => $keyName]);
return $result; return $result;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment