| | |
| | | public int delExpertInfo(Long expertId) { |
| | | SysExpertInfo expertInfo = new SysExpertInfo(); |
| | | expertInfo.setId(expertId); |
| | | expertInfo.setDelFlag(DeleteFlagEnum.DELETED.getCode()); |
| | | expertInfo.setDelFlag(DeleteFlagEnum.DELETED.getCode().intValue()); |
| | | expertInfo.setUpdateBy(SecurityUtils.getUsername()); |
| | | boolean b= updateById(expertInfo); |
| | | if(!b){ |
| | |
| | | |
| | | @Override |
| | | public List<ProjectExpertSectionResp> getExpertRound(SysExpertInfoRoundReq req) { |
| | | req.setDeptId(SecurityUtils.getDeptId()); |
| | | return baseMapper.getExpertRound(req); |
| | | } |
| | | |