|  |  | 
 |  |  | import com.dy.common.webUtil.BaseResponse; | 
 |  |  | import com.dy.common.webUtil.BaseResponseUtils; | 
 |  |  | import com.dy.common.webUtil.QueryResultVo; | 
 |  |  | import com.dy.pmsGlobal.aop.Log; | 
 |  |  | import com.dy.pmsGlobal.pojoBa.BaRole; | 
 |  |  | import jakarta.validation.Valid; | 
 |  |  | import lombok.extern.slf4j.Slf4j; | 
 |  |  | 
 |  |  |      */ | 
 |  |  |     @PostMapping(path="save") | 
 |  |  |     @SsoPowerAop(power = "10100011") | 
 |  |  |     @Log("保存角色信息") | 
 |  |  |     public BaseResponse<BaRole> save(@RequestBody @Valid BaRole role,BindingResult bindingResult){ | 
 |  |  |         try { | 
 |  |  |             role.setDeleted(false); | 
 |  |  | 
 |  |  |      */ | 
 |  |  |     @PostMapping(path="update") | 
 |  |  |     @SsoPowerAop(power = "10100011") | 
 |  |  |     @Log("更新角色信息") | 
 |  |  |     public BaseResponse<BaRole> update(@RequestBody @Valid BaRole role,BindingResult bindingResult){ | 
 |  |  |         try { | 
 |  |  |             return BaseResponseUtils.buildSuccess(roleSv.update(role)); | 
 |  |  | 
 |  |  |     /** | 
 |  |  |      * 删除角色信息 | 
 |  |  |      * @param id | 
 |  |  |      * @param bindingResult | 
 |  |  |      * @return | 
 |  |  |      */ | 
 |  |  |     @PostMapping(path="delete") | 
 |  |  |     @GetMapping(path="delete") | 
 |  |  |     @SsoPowerAop(power = "10100011") | 
 |  |  |     public BaseResponse<BaRole> delete(String id,BindingResult bindingResult){ | 
 |  |  |     @Log("删除角色信息") | 
 |  |  |     public BaseResponse<BaRole> delete(String id){ | 
 |  |  |         try { | 
 |  |  |             return BaseResponseUtils.buildSuccess(roleSv.delete(Long.parseLong(id))); | 
 |  |  |         }catch (Exception e){ | 
 |  |  |             log.error("删除角色异常", e); | 
 |  |  |             return BaseResponseUtils.buildException(e.getMessage()); | 
 |  |  |         } | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 禁用角色信息 | 
 |  |  |      * @param role | 
 |  |  |      * @return | 
 |  |  |      */ | 
 |  |  |     @PostMapping(path="disabled") | 
 |  |  |     @SsoPowerAop(power = "10100011") | 
 |  |  |     @Log("禁用或启用角色信息") | 
 |  |  |     public BaseResponse<BaRole> disabled(@RequestBody BaRole role){ | 
 |  |  |         try { | 
 |  |  |             return BaseResponseUtils.buildSuccess(roleSv.disabled(role.id,role.disabled)); | 
 |  |  |         }catch (Exception e){ | 
 |  |  |             log.error("禁用角色异常", e); | 
 |  |  |             return BaseResponseUtils.buildException(e.getMessage()); | 
 |  |  |         } | 
 |  |  |     } | 
 |  |  | 
 |  |  |      */ | 
 |  |  |     @GetMapping(path="one") | 
 |  |  |     @SsoPowerAop(power = "10100010") //登录与权限同时验证 | 
 |  |  |     @Log("根据ID查询角色信息") | 
 |  |  |     public BaseResponse<BaRole> one(String id){ | 
 |  |  |         try{ | 
 |  |  |             BaRole role=roleSv.selectById(id); | 
 |  |  | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 分页查询角色信息 | 
 |  |  |      * 查询角色信息 | 
 |  |  |      * @param vo | 
 |  |  |      * @return | 
 |  |  |      */ | 
 |  |  |     @PostMapping(path="some") | 
 |  |  |     @SsoPowerAop(power = "10100010") | 
 |  |  |     @Log("查询角色信息") | 
 |  |  |     public BaseResponse<QueryResultVo<List<BaRole>>> some(@RequestBody QueryVo vo){ | 
 |  |  |         try { | 
 |  |  |             return BaseResponseUtils.buildSuccess(roleSv.selectSome(vo)); | 
 |  |  |             QueryResultVo<List<BaRole>> list = roleSv.selectSome(vo) ; | 
 |  |  |             return BaseResponseUtils.buildSuccess(list); | 
 |  |  |         }catch (Exception e){ | 
 |  |  |             log.error("分页查询角色异常", e); | 
 |  |  |             log.error("查询角色异常", e); | 
 |  |  |             return BaseResponseUtils.buildException(e.getMessage()); | 
 |  |  |         } | 
 |  |  |     } |