31 lines
869 B
PHP
31 lines
869 B
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | YwxApp [ WE CAN DO IT JUST THINK ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2026-2036 http://ywxapp.cn All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Author: ywxapp<admin@ywxapp.cn>
|
|
// +----------------------------------------------------------------------
|
|
declare (strict_types = 1);
|
|
|
|
namespace addon\wxchat\model;
|
|
|
|
use ywxapp\model\BaseModel;
|
|
|
|
|
|
class WxchatMomentShare extends BaseModel
|
|
{
|
|
|
|
|
|
protected function getOptions(): array
|
|
{
|
|
return [
|
|
'strict' => true,
|
|
'name' => 'wxchat_moment_share',
|
|
'autoWriteTimestamp' => 0,
|
|
'createTime' => 'create_at',
|
|
];
|
|
}
|
|
|
|
}
|