1234567891011121314151617181920212223242526 |
- <?php
- namespace App\Repositories\Models\Wechat;
- use App\Repositories\Models\Model;
- class Enent extends Model
- {
- /**
- * @var string
- */
- protected $table = 'enent';
- protected $guarded = [];
- /**
- * The attributes excluded from the model's JSON form.
- *
- * @var array
- */
- protected $hidden = [];
- }
|