| | |
| | | |
| | | import com.baomidou.mybatisplus.core.toolkit.CollectionUtils; |
| | | import com.dy.common.webUtil.QueryResultVo; |
| | | import com.dy.pmsBase.role.QueryVo; |
| | | import com.dy.pmsGlobal.daoBa.BaPrivilegeMapper; |
| | | import com.dy.pmsGlobal.daoBa.BaRoleMapper; |
| | | import com.dy.pmsGlobal.daoBa.BaRolePrivilegeMapper; |
| | |
| | | return this.dao.deleteLogicById(id); |
| | | } |
| | | |
| | | /** |
| | | * 禁用或启用角色信息 |
| | | * @param id |
| | | * @param disabled |
| | | * @return |
| | | */ |
| | | public int disabled(Long id,Boolean disabled) { |
| | | BaRole role=new BaRole(); |
| | | role.id=id; |
| | | role.disabled=disabled; |
| | | return dao.updateByPrimaryKeySelective(role); |
| | | } |
| | | |
| | | @Transactional |
| | | public int update(BaRole role) { |
| | | int count = dao.updateByPrimaryKeySelective(role); |