| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?php
- namespace app\admin\model\dynamic;
- use think\Model;
- class Dynamic extends Model
- {
- // 表名
- protected $name = 'dynamic';
- // 自动写入时间戳字段
- protected $autoWriteTimestamp = 'integer';
- // 定义时间戳字段名
- protected $createTime = 'createtime';
- protected $updateTime = 'updatetime';
- protected $deleteTime = false;
- // 追加属性
- protected $append = [
- 'type_text',
- 'status_text'
- ];
- public function getTypeList()
- {
- return ['image' => __('Image'), 'video' => __('Video')];
- }
- public function getStatusList()
- {
- return ['checking' => __('Checking'), 'normal' => __('Normal'), 'reject' => __('Reject')];
- }
- public function getTypeTextAttr($value, $data)
- {
- $value = $value ? $value : (isset($data['type']) ? $data['type'] : '');
- $list = $this->getTypeList();
- return isset($list[$value]) ? $list[$value] : '';
- }
- public function getStatusTextAttr($value, $data)
- {
- $value = $value ? $value : (isset($data['status']) ? $data['status'] : '');
- $list = $this->getStatusList();
- return isset($list[$value]) ? $list[$value] : '';
- }
- public function massager()
- {
- return $this->belongsTo('app\admin\model\Massager', 'massager_id', 'id', [], 'LEFT')
- ->setEagerlyType(0);
- }
- public function topic()
- {
- return $this->belongsTo('Topic', 'topic_id', 'id', [], 'LEFT')->setEagerlyType(0);
- }
- public function comments()
- {
- return $this->hasMany(Comment::class, 'dynamic_id', "id")->where("ma_dynamic_comment.status", \E_BASE_STATUS::Normal);
- }
- public function likes()
- {
- return $this->hasMany(Like::class, 'dynamic_id', "id");
- }
- }
|