12345678910111213141516171819 |
- <?php
- /**
- * Created by PhpStorm.
- * User: shensong
- * Date: 2022/10/14
- * Time: 14:39
- */
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class TbAccountInfo extends Model
- {
- protected $table = 'tb_account_info';
- public $timestamps = false;
- protected static $unguarded = true;
- }
|