@Query(value="select role.data_role_id,role.data_role_name,count(role.data_role_id) as count from auth_data_role_users user inner join auth_data_role role on user.data_role_id=role.data_role_id and role.data_role_id !=1 group by role.data_role_id",nativeQuery=true)
List<Map<String,Object>>statRoleByUser();
@Query(value="select 1 from auth_data_role_users where user_id=?1 and data_role_id in ?2",nativeQuery=true)