新版订单消耗系统

PreAuditRecord.php 311B

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