no message

This commit is contained in:
hellcat 2025-10-11 14:40:48 +08:00
parent c286bbb050
commit ff94d9f68d
3 changed files with 29 additions and 0 deletions

BIN
public/.DS_Store vendored

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,29 @@
<?php
namespace App\Services\Tg\Hook\Mod;
use App\Models\Product 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]);
}
}