DemoModel.php 415 B

12345678910111213141516171819202122232425262728
  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. /**
  15. * 默认查询字段
  16. *
  17. * @var array|string[]
  18. */
  19. public array $select = [
  20. '*'
  21. ];
  22. }