Like.php 850 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. class Like extends \app\common\model\Like
  5. {
  6. // 追加属性
  7. protected $append = [
  8. 'created_at_text'
  9. ];
  10. public function getCreatedAtTextAttr($value, $data)
  11. {
  12. $value = $value ? $value : (isset($data['created_at']) ? $data['created_at'] : '');
  13. return is_numeric($value) ? date("Y-m-d H:i:s", $value) : $value;
  14. }
  15. protected function setCreatedAtAttr($value)
  16. {
  17. return $value === '' ? null : ($value && !is_numeric($value) ? strtotime($value) : $value);
  18. }
  19. public function user()
  20. {
  21. return $this->belongsTo('User', 'user_id', 'id', [], 'LEFT')->setEagerlyType(0);
  22. }
  23. public function video()
  24. {
  25. return $this->belongsTo('Video', 'like_id', 'id', [], 'LEFT')->setEagerlyType(0);
  26. }
  27. }