| 123456789101112131415161718192021222324 |
- <?php
- namespace app\agent\model\auth;
- use app\common\model\BaseModel;
- class Role extends BaseModel
- {
- /**
- * @var string
- */
- protected $name = 'agent_system_roles';
- /**
- * @var array
- */
- protected $insert = ['created_at','updated_at'];
- /**
- * @var array
- */
- protected $update = ['updated_at'];
- }
|