20 lines
346 B
PHP
20 lines
346 B
PHP
<?php
|
|
/**
|
|
* Order.php
|
|
*
|
|
* @copyright 2022 opencart.cn - All Rights Reserved
|
|
* @link http://www.guangdawangluo.com
|
|
* @author Edward Yang <yangjin@opencart.cn>
|
|
* @created 2022-07-04 17:24:42
|
|
* @modified 2022-07-04 17:24:42
|
|
*/
|
|
|
|
namespace Beike\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Order extends Model
|
|
{
|
|
|
|
}
|