0
0

更新代码

This commit is contained in:
2020-08-04 10:09:42 +08:00
parent 6118b5b63b
commit c2ac5d964e
478 changed files with 34410 additions and 0 deletions

23
app/Models/Freight.php Normal file
View File

@@ -0,0 +1,23 @@
<?php
namespace App\Models;
use RuLong\Area\Models\Area;
/**
* 邮费模型
*/
class Freight extends Model
{
protected $table = 'seller_freights';
public function seller()
{
return $this->belongsTo(Seller::class);
}
public function area()
{
return $this->belongsTo(Area::class);
}
}