12345678910111213141516171819 |
- <?php
- /**
- * Created by PhpStorm.
- * User: shensong
- * Date: 2020/12/23
- * Time: 16:28
- */
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class PlatformConfig extends Model
- {
- protected $table = 'platform_config';
- public $timestamps = false;
- protected $hidden = ['is_delete', 'created_at', 'updated_at'];
- }
|