|
@@ -72,7 +72,6 @@ public class PdmConstructorController extends BaseController
|
|
|
/**
|
|
|
* 新增配网工程队伍施工人员信息
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('powerdistribution:constructor:add')")
|
|
|
@Log(title = "配网工程队伍施工人员信息", businessType = BusinessType.INSERT)
|
|
|
@PostMapping
|
|
|
public AjaxResult add(@RequestBody PdmConstructor pdmConstructor)
|
|
@@ -83,7 +82,6 @@ public class PdmConstructorController extends BaseController
|
|
|
/**
|
|
|
* 修改配网工程队伍施工人员信息
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('powerdistribution:constructor:edit')")
|
|
|
@Log(title = "配网工程队伍施工人员信息", businessType = BusinessType.UPDATE)
|
|
|
@PutMapping
|
|
|
public AjaxResult edit(@RequestBody PdmConstructor pdmConstructor)
|
|
@@ -94,7 +92,7 @@ public class PdmConstructorController extends BaseController
|
|
|
/**
|
|
|
* 删除配网工程队伍施工人员信息
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('powerdistribution:constructor:remove')")
|
|
|
+
|
|
|
@Log(title = "配网工程队伍施工人员信息", businessType = BusinessType.DELETE)
|
|
|
@DeleteMapping("/{ids}")
|
|
|
public AjaxResult remove(@PathVariable Long[] ids)
|