|
@@ -39,4 +39,15 @@ public class IntroduceMapController {
|
|
Boolean data = introduceMapFacade.saveRecord(introduceMapVO);
|
|
Boolean data = introduceMapFacade.saveRecord(introduceMapVO);
|
|
return RespDTO.onSuc(data);
|
|
return RespDTO.onSuc(data);
|
|
}
|
|
}
|
|
-}
|
|
|
|
|
|
+
|
|
|
|
+ @ApiOperation(value = "删除标签提示信息映射关系[by:zhaops]",
|
|
|
|
+ notes = "questionId: 标签id,必填" +
|
|
|
|
+ "introduceId: 提示信息id,必填" +
|
|
|
|
+ "type: 标签类型,必填")
|
|
|
|
+ @PostMapping("/delIntroduceMap")
|
|
|
|
+ @SysLogger("delIntroduceMap")
|
|
|
|
+ public RespDTO<Boolean> delIntroduceMap(@RequestBody IntroduceMapVO introduceMapVO) {
|
|
|
|
+ Boolean data = introduceMapFacade.delIntroduceMap(introduceMapVO);
|
|
|
|
+ return RespDTO.onSuc(data);
|
|
|
|
+ }
|
|
|
|
+}
|