mirror of
https://gitee.com/hzchunfen/erp.git
synced 2025-11-30 22:20:45 +00:00
12 lines
161 B
PHP
12 lines
161 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
|
||
|
|
class PurchaseRecords extends Model
|
||
|
|
{
|
||
|
|
//
|
||
|
|
protected $table = 'purchase_records';
|
||
|
|
}
|