| | |
| | | import com.panzhihua.common.model.vos.partybuilding.PartyBuildingMemberVO; |
| | | import com.panzhihua.common.model.vos.partybuilding.excel.ComPbCheckUnitErrorExcelVO; |
| | | import com.panzhihua.common.model.vos.partybuilding.excel.ComPbCheckUnitExcelVO; |
| | | import com.panzhihua.common.utlis.StringUtils; |
| | | import com.panzhihua.service_dangjian.dao.ComPbMemberDAO; |
| | | import com.panzhihua.service_dangjian.dao.ComPbMemberRoleDAO; |
| | | import com.panzhihua.service_dangjian.entity.ComPbCheckUnit; |
| | |
| | | */ |
| | | @Override |
| | | public R detailById(Long id) { |
| | | return R.ok(this.baseMapper.queryById(id)); |
| | | ComPbCheckUnitVo checkUnitVo = this.baseMapper.queryById(id); |
| | | if(checkUnitVo != null && StringUtils.isEmpty(checkUnitVo.getContacts())){ |
| | | checkUnitVo.setContacts("待编辑负责人"); |
| | | } |
| | | return R.ok(checkUnitVo); |
| | | } |
| | | |
| | | /** |