Roles.php 494 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace app\admin\model;
  3. use app\common\model\BaseModel;
  4. class Roles extends BaseModel
  5. {
  6. /**
  7. * @var string
  8. */
  9. protected $name = 'system_roles';
  10. /**
  11. * @var array
  12. */
  13. protected $auto = [];
  14. /**
  15. * @var array
  16. */
  17. protected $insert = ['created_at','updated_at'];
  18. /**
  19. * @var array
  20. */
  21. protected $update = ['updated_at'];
  22. /**
  23. * @var array
  24. */
  25. protected $field = [
  26. ];
  27. }