Question.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. class Question extends Model
  5. {
  6. // 表名
  7. protected $name = 'question';
  8. // 自动写入时间戳字段
  9. protected $autoWriteTimestamp = 'integer';
  10. // 定义时间戳字段名
  11. protected $createTime = 'createtime';
  12. protected $updateTime = 'updatetime';
  13. protected $deleteTime = false;
  14. // 追加属性
  15. protected $append = [
  16. 'status_text'
  17. ];
  18. protected static function init()
  19. {
  20. self::afterInsert(function ($row) {
  21. $pk = $row->getPk();
  22. $row->getQuery()->where($pk, $row[$pk])->update(['weigh' => $row[$pk]]);
  23. });
  24. }
  25. public function getStatusList()
  26. {
  27. return ['0' =>__('Status 0'), '1' =>__('Status 1')];
  28. }
  29. public function getStatusTextAttr($value, $data)
  30. {
  31. $value = $value ? $value : (isset($data['status']) ? $data['status'] : '');
  32. $list = $this->getStatusList();
  33. return isset($list[$value]) ? $list[$value] : '';
  34. }
  35. public function questionItem()
  36. {
  37. return $this->hasMany('QuestionItem', 'id', 'question_id');
  38. }
  39. }