12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- use App\Models\User;
- class UserCert extends Model{
- protected $table = 'user_cert';
- public $timestamps=true;
- /*
- * 邀请人关联
- * */
- public function recom_user()
- {
- return $this->belongsTo(User::class,'recom_id');
- }
- /*
- * 用户信息
- * */
- public function user_info()
- {
- return $this->belongsTo(User::class,'user_id');
- }
- /*
- *上级关联
- *
- * */
- public function agent_user()
- {
- return $this->belongsTo(User::class,'agent_id');
- }
- }
|