Userquestionlog.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. class Userquestionlog extends Model
  5. {
  6. // 表名
  7. protected $table = 'user_question_log';
  8. // 自动写入时间戳字段
  9. protected $autoWriteTimestamp = 'integer';
  10. // 定义时间戳字段名
  11. protected $createTime = 'createtime';
  12. protected $updateTime = false;
  13. protected $deleteTime = false;
  14. // 追加属性
  15. protected $append = [
  16. 'is_right_text'
  17. ];
  18. public function getIsRightList()
  19. {
  20. return ['1' => __('Is_right 1'), '0' => __('Is_right 0')];
  21. }
  22. public function getIsRightTextAttr($value, $data)
  23. {
  24. $value = $value ? $value : (isset($data['is_right']) ? $data['is_right'] : '');
  25. $list = $this->getIsRightList();
  26. return isset($list[$value]) ? $list[$value] : '';
  27. }
  28. public function user()
  29. {
  30. return $this->belongsTo('User', 'user_id', 'id', [], 'LEFT')->setEagerlyType(0);
  31. }
  32. public function question()
  33. {
  34. return $this->belongsTo('app\admin\model\exam\Question', 'question_id', 'id', [], 'LEFT')->setEagerlyType(0);
  35. }
  36. public function jigou()
  37. {
  38. return $this->belongsTo('Votejigou', 'jigou_id', 'id', [], 'LEFT')->setEagerlyType(0);
  39. }
  40. }