no message

This commit is contained in:
hellcat 2025-10-11 14:25:09 +08:00
parent 6a203ee027
commit 0161dbebc2
2 changed files with 30 additions and 1 deletions

View File

@ -988,7 +988,7 @@ final class Cron
//// pendding转激活 # 步骤3
public static function planQueue_pendingToActivation()
{
self::_helper_log("pending到activation - 开始");
self::_helper_log("套餐激活 - 开始");
$oPlanQueueList = PlanQueue::whereNull("status")->get();
foreach ($oPlanQueueList as $oPlanQueue) {

View File

@ -0,0 +1,29 @@
<?php
namespace App\Services\Tg\Hook\Mod;
use App\Models\Ann as ModelProduct;
use App\Services\Tg\Hook\Dog;
class Product extends Base {
private $oDog;
public function __construct($aUpdate)
{
$this->oDog = new Dog(new ModelProduct());
$this->oDog->_setDogName("product"); // 必须me用正常就是类名只不过后期没准改名所以就这里写死
// $this->oDog->_setPrimaryKey("code"); // 可选默认id
// $this->oDog->_setStrField(["content"]); // 可选,指定长文本字段
// $this->oDog->_setInFormat(["date"]); // 可选,忘了
}
public function __call($sName, $aArg)
{
return $this->oDog->$sName($aArg[0]);
}
}