Notice.php 694 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. /**
  5. * Notice
  6. * @controllerUrl 'routineNotice'
  7. */
  8. class Notice extends Model
  9. {
  10. // 表名
  11. protected $name = 'notice';
  12. // 自动写入时间戳字段
  13. protected $autoWriteTimestamp = 'int';
  14. protected $createTime = 'createtime';
  15. protected $updateTime = 'updatetime';
  16. protected static function onAfterInsert($model)
  17. {
  18. if ($model->weigh == 0) {
  19. $pk = $model->getPk();
  20. $model->where($pk, $model[$pk])->update(['weigh' => $model[$pk]]);
  21. }
  22. }
  23. public function getContentAttr($value, $row)
  24. {
  25. return !$value ? '' : htmlspecialchars_decode($value);
  26. }
  27. }