This commit is contained in:
“wanyongkang”
2025-05-15 23:02:34 +08:00
parent 3fd9a6ccba
commit e44720fee6

View File

@@ -58,6 +58,11 @@ class Account
die;
}
$up_data = [$data['account']];
if (strstr($data['account'], ',')) {
$up_data = explode(",", $data['account']);
}
$account_model = new ProductAccount;
$info = $account_model->getOne(['Account'=>["IN",$data['account']]],'ProductName,PackageName,Account,ConnectCount,StartTime,EndTime');