|
@@ -51,13 +51,13 @@ public class EntityController {
|
|
|
return entityFacade.updateNeoNode(neoEntityVO);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "关系删除API", notes = "")
|
|
|
+ @ApiOperation(value = "关系禁用API", notes = "")
|
|
|
@PostMapping("/removeRelation")
|
|
|
public NeoRelationDTO removeRelation(@RequestBody NeoRelationVO neoRelationVO) {
|
|
|
return entityFacade.deleteNeoRelation(neoRelationVO);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "实体删除API", notes = "")
|
|
|
+ @ApiOperation(value = "实体禁用API", notes = "")
|
|
|
@PostMapping("/deleteNode")
|
|
|
public NeoEntityDTO deleteNode(@RequestBody NeoEntityVO neoEntityVO) {
|
|
|
return entityFacade.deleteNeoNode(neoEntityVO);
|