Commit f322960c by 王召彬

修复根据卖家id读取配置的错误

parent a9c44aab
# 2.0.55
- 修复根据卖家id读取配置的错误
# 2.0.54
- 验证码改成腾讯云短信
......
......@@ -84,7 +84,7 @@ class CfgCenter
public static function getBySellerId($keyName, int $sellerId)
{
$dbConn = self::dbConnect('seller');
$result = $dbConn->get("seller", ['oemId'], ['sellerId' => $sellerId]);
$result = $dbConn->get("seller", ['oemId'], ['id' => $sellerId]);
return self::_get($keyName, (int)$result['oemId']);
}
......
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