DemoModel.php 452 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Model\Arts;
  4. use App\Model\Model;
  5. class DemoModel extends Model
  6. {
  7. /**
  8. * The table associated with the model.
  9. *
  10. * @var ?string
  11. */
  12. protected ?string $table = 'admin_role';
  13. protected ?string $dateFormat = 'U';
  14. public bool $timestamps = false;
  15. /**
  16. * 默认查询字段
  17. *
  18. * @var array|string[]
  19. */
  20. public array $select = [
  21. '*'
  22. ];
  23. }