CatchModel.php 1016 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. declare(strict_types=1);
  3. namespace catcher\base;
  4. use catcher\CatchQuery;
  5. use catcher\traits\db\BaseOptionsTrait;
  6. use catcher\traits\db\TransTrait;
  7. use think\model\concern\SoftDelete;
  8. use catcher\traits\db\ScopeTrait;
  9. /**
  10. *
  11. * @mixin CatchQuery
  12. * Class CatchModel
  13. * @package catcher\base
  14. */
  15. abstract class CatchModel extends \think\Model
  16. {
  17. use SoftDelete, TransTrait, BaseOptionsTrait, ScopeTrait;
  18. protected $createTime = 'created_at';
  19. protected $updateTime = 'updated_at';
  20. protected $deleteTime = 'deleted_at';
  21. protected $defaultSoftDelete = 0;
  22. protected $autoWriteTimestamp = true;
  23. public const LIMIT = 10;
  24. // 开启
  25. public const ENABLE = 1;
  26. // 禁用
  27. public const DISABLE = 2;
  28. /**
  29. * 是否有 field
  30. *
  31. * @time 2020年11月23日
  32. * @param string $field
  33. * @return bool
  34. */
  35. public function hasField(string $field)
  36. {
  37. return property_exists($this, 'field') ? in_array($field, $this->field) : false;
  38. }
  39. }