12345678910111213141516171819 |
- <?php
- /**
- * Created by PhpStorm.
- * User: shensong
- * Date: 2021/1/25
- * Time: 18:06
- */
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class CustomerConfig extends Model
- {
- protected $table = 'customer_config';
- public $timestamps = false;
- protected static $unguarded = true;
- }
|