|
@@ -93,21 +93,21 @@ public class XmProjectInvestorController extends BaseController
|
|
|
/**
|
|
|
* 删除项目投资方 关联project(一对多关系)
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('system:investor:remove')")
|
|
|
+/* @PreAuthorize("@ss.hasPermi('system:investor:remove')")
|
|
|
@Log(title = "项目投资方 关联project(一对多关系)", businessType = BusinessType.DELETE)
|
|
|
@DeleteMapping("/{ids}")
|
|
|
public AjaxResult remove(@PathVariable Long[] ids)
|
|
|
{
|
|
|
return toAjax(xmProjectInvestorService.deleteXmProjectInvestorByIds(ids));
|
|
|
- }
|
|
|
+ }*/
|
|
|
|
|
|
/**
|
|
|
* 删除项目投资方 关联project(一对多关系)
|
|
|
*/
|
|
|
@PreAuthorize("@ss.hasPermi('system:investor:remove')")
|
|
|
@Log(title = "项目投资方 关联project(一对多关系)", businessType = BusinessType.DELETE)
|
|
|
- @GetMapping("/delete")
|
|
|
- public AjaxResult delete(Long id)
|
|
|
+ @GetMapping("/delete/{id}")
|
|
|
+ public AjaxResult delete(@PathVariable("id")Long id)
|
|
|
{
|
|
|
return toAjax(xmProjectInvestorService.deleteXmProjectInvestorById(id));
|
|
|
}
|