CmsRolePermModel.php
520 Bytes
<?php
/**
* Created by PhpStorm.
* User: duwenjun
* Date: 2021/8/10
* Time: 5:59 PM
*/
namespace App\Models\Cms;
use Illuminate\Database\Eloquent\Model;
class CmsRolePermModel extends Model
{
protected $connection = 'cms';
protected $table = 't_role_perm';
public $timestamps = false;
public static function getRolePermInfosByRoleIds($role_ids, $bid)
{
$res = self::whereIn("roleId", $role_ids)->where("bid", $bid)->get();
return ($res) ? $res->toArray() : [];
}
}