belongsTo(EnterpriseModel::class, 'enterprise_id', 'id'); } /** * 该代理商名下的下级用户 */ public function children(): HasMany { return $this->hasMany(self::class, 'pid', 'id'); } public function parent(): BelongsTo { return $this->belongsTo(self::class, 'pid', 'id'); } }