This commit is contained in:
linfso 2024-06-06 14:55:56 +08:00
parent d7ec91bb5f
commit 6885ce9230

View File

@ -142,7 +142,7 @@ public class EmisProblemTypeController extends EmisBaseController
@PreAuthorize("@ss.hasPermi('emis:emisProblemType:remove')") @PreAuthorize("@ss.hasPermi('emis:emisProblemType:remove')")
@Log(title = "问题件类型", businessType = BusinessType.DELETE) @Log(title = "问题件类型", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}") @DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids) public AjaxResult remove(@PathVariable Integer[] ids)
{ {
return toAjax(emisProblemTypeService.deleteEmisProblemTypeByIds(ids)); return toAjax(emisProblemTypeService.deleteEmisProblemTypeByIds(ids));
} }