RentRelationship.php
987 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
/**
* Created by PhpStorm.
* User: machengjun
* Date: 2018/2/9
* Time: 下午1:43
*/
namespace App\Modules\Models\Rent\Traits\Relationship;
use App\Modules\Models\Customer\Customer;
use App\Modules\Models\Machine\Machine;
use App\Modules\Models\Order\CouponShip;
use App\Modules\Models\Production\Production;
use App\Modules\Models\Spot\Spot;
/**
* Class BaseCustomerRelationship
* @package App\Modules\Models\Customer\Traits\Relationship
*/
trait RentRelationship
{
public function production()
{
return $this->hasMany(Production::class);
}
public function spot()
{
return $this->belongsTo(Spot::class,'spot_id','id');
}
public function customer()
{
return $this->belongsTo(Customer::class);
}
public function machine()
{
return $this->belongsTo(Machine::class);
}
public function consumeOrders()
{
return $this->hasMany(CouponShip::class,'order_id');
}
}