Role.php 371 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace app\agent\model\auth;
  3. use app\common\model\BaseModel;
  4. class Role extends BaseModel
  5. {
  6. /**
  7. * @var string
  8. */
  9. protected $name = 'agent_system_roles';
  10. /**
  11. * @var array
  12. */
  13. protected $insert = ['created_at','updated_at'];
  14. /**
  15. * @var array
  16. */
  17. protected $update = ['updated_at'];
  18. }