This commit is contained in:
wushumin
2026-04-16 13:04:15 +08:00
parent 11ff03d0ea
commit 99173639c9
7 changed files with 199 additions and 5 deletions

View File

@@ -0,0 +1,10 @@
<?php
namespace app\common\model;
use Illuminate\Database\Eloquent\Model;
class Invoice extends Model
{
protected $table = 'invoices';
protected $guarded = [];
}