12345678910111213141516171819 |
- <?php
- /**
- * Created by PhpStorm.
- * User: shensong
- * Date: 2022/5/17
- * Time: 19:18
- */
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class CustomerRedInvoiceOrders extends Model
- {
- protected $table = 'customer_red_invoice_orders';
- public $timestamps = false;
- protected static $unguarded = true;
- }
|