Commit f4cccc0f authored by baozhuhui's avatar baozhuhui
Browse files

修改角色删除后,再分配角色时,该角色还存在的问题

parent ced7d9b2
......@@ -83,6 +83,7 @@ public class RoleService {
public List<Role> findUserRole(){
RoleExample example = new RoleExample();
example.setOrderByClause("Id");
example.createCriteria().andDeleteFlagNotEqualTo(BusinessConstants.DELETE_FLAG_DELETED);
List<Role> list = roleMapper.selectByExample(example);
return list;
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment