38 lines
1.0 KiB
PHP
38 lines
1.0 KiB
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 WxchatMomentMedia extends BaseModel
|
|
{
|
|
|
|
protected function getOptions(): array
|
|
{
|
|
return [
|
|
'strict' => true,
|
|
'name' => 'wxchat_moment_medias',
|
|
'autoWriteTimestamp' => 0,
|
|
'createTime' => 'create_at',
|
|
'updateTime' => false,
|
|
];
|
|
}
|
|
|
|
// 关联:所属动态
|
|
|
|
public function moment()
|
|
{
|
|
return $this->belongsTo(Moment::class, 'mid');
|
|
}
|
|
|
|
}
|