DataNewsMark.php 805 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. namespace app\data\model;
  3. use think\admin\Model;
  4. /**
  5. * Class DataNewsMark
  6. * @package app\data\model
  7. */
  8. class DataNewsMark extends Model
  9. {
  10. /**
  11. * 获取标签数据
  12. * @return array
  13. * @throws \think\db\exception\DataNotFoundException
  14. * @throws \think\db\exception\DbException
  15. * @throws \think\db\exception\ModelNotFoundException
  16. */
  17. public static function items(): array
  18. {
  19. $query = static::mk()->where(['status' => 1, 'deleted' => 0]);
  20. return $query->field('id,name,remark')->order('sort desc,id desc')->select()->toArray();
  21. }
  22. /**
  23. * 格式化创建时间
  24. * @param string $value
  25. * @return string
  26. */
  27. public function getCreateAtAttr(string $value): string
  28. {
  29. return format_datetime($value);
  30. }
  31. }