新版订单消耗系统

PlatformConfig.php 336B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: shensong
  5. * Date: 2020/12/23
  6. * Time: 16:28
  7. */
  8. namespace App\Models;
  9. use Illuminate\Database\Eloquent\Model;
  10. class PlatformConfig extends Model
  11. {
  12. protected $table = 'platform_config';
  13. public $timestamps = false;
  14. protected $hidden = ['is_delete', 'created_at', 'updated_at'];
  15. }