|
@@ -43,7 +43,7 @@ public class CaseTagPointServiceImpl extends ServiceImpl<ICaseTagPointMapper, Ca
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public void place(CaseTagPoint caseTagPoint) {
|
|
|
+ public CaseTagPoint place(CaseTagPoint caseTagPoint) {
|
|
|
if(caseTagPoint.getTagId() == null || StringUtils.isEmpty(caseTagPoint.getTagPoint())){
|
|
|
throw new BusinessException(ResultCode.MISSING_REQUIRED_PARAMETERS);
|
|
|
}
|
|
@@ -52,6 +52,7 @@ public class CaseTagPointServiceImpl extends ServiceImpl<ICaseTagPointMapper, Ca
|
|
|
caseTagPoint.setTagPointTitle("位置"+count+1);
|
|
|
}
|
|
|
this.save(caseTagPoint);
|
|
|
+ return caseTagPoint;
|
|
|
}
|
|
|
|
|
|
@Override
|