123456789101112131415161718192021 |
- <?php
- /**
- * Created by PhpStorm.
- * User: shensong
- * Date: 2023/7/25
- * Time: 16:59
- */
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class PreAuditRecord extends Model
- {
- protected $table = 'pre_audit_record';
- public $timestamps = false;
- protected static $unguarded = true;
- }
|