优惠券小程序

TbAccountInfo.php 308B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: shensong
  5. * Date: 2022/10/14
  6. * Time: 14:39
  7. */
  8. namespace App\Models;
  9. use Illuminate\Database\Eloquent\Model;
  10. class TbAccountInfo extends Model
  11. {
  12. protected $table = 'tb_account_info';
  13. public $timestamps = false;
  14. protected static $unguarded = true;
  15. }