|
|
|
@ -369,6 +369,13 @@ public class CaseContentServiceImpl extends BaseServiceImpl<CaseContentMapper, C
|
|
|
|
|
findCaseContentAttachment.setContentId(contentId);
|
|
|
|
|
List<CaseContentAttachment> caseContentAttachmentList = caseContentAttachmentMapper.select(findCaseContentAttachment);
|
|
|
|
|
caseContentDetailBakVo.setCaseContentAttachmentList(caseContentAttachmentList);
|
|
|
|
|
//level
|
|
|
|
|
CaseCategory findCaseCategory3 = caseCategoryMapper.selectByPrimaryKey(caseContent.getCategoryId());
|
|
|
|
|
CaseCategory findCaseCategory2 = caseCategoryMapper.selectByPrimaryKey(findCaseCategory3.getParentId());
|
|
|
|
|
caseContentDetailBakVo.setLevelId2(findCaseCategory2.getId());
|
|
|
|
|
CaseCategory findCaseCategory1 = caseCategoryMapper.selectByPrimaryKey(findCaseCategory2.getParentId());
|
|
|
|
|
caseContentDetailBakVo.setLevelId1(findCaseCategory1.getId());
|
|
|
|
|
|
|
|
|
|
return caseContentDetailBakVo;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|