2025-11-07 09:56:20 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace app\model;
|
|
|
|
|
|
|
|
|
|
use app\model\Base;
|
|
|
|
|
/**
|
|
|
|
|
* @property integer $id 主键(ID) - 无注释
|
|
|
|
|
* @property string $content 无注释
|
|
|
|
|
* @property string $content1 无注释
|
|
|
|
|
* @property string $content2 无注释
|
|
|
|
|
*/
|
|
|
|
|
class Content extends Base
|
|
|
|
|
{
|
2025-12-24 16:59:05 +08:00
|
|
|
protected function getOptions(): array{
|
|
|
|
|
return array_merge(parent::getOptions(),[
|
|
|
|
|
'autoWriteTimestamp' => false
|
|
|
|
|
]);
|
|
|
|
|
}
|
2025-11-07 09:56:20 +08:00
|
|
|
}
|