| | |
| | | /** |
| | | * 删除字典类型 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:dict:remove')") |
| | | @Log(title = "字典类型", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{dictCodes}") |
| | | public AjaxResult remove(@PathVariable Long[] dictCodes) |
| | | { |
| | | dictDataService.deleteDictDataByIds(dictCodes); |
| | | return success(); |
| | | } |
| | | //@PreAuthorize("@ss.hasPermi('system:dict:remove')") |
| | | //@Log(title = "字典类型", businessType = BusinessType.DELETE) |
| | | //@DeleteMapping("/{dictCodes}") |
| | | //public AjaxResult remove(@PathVariable Long[] dictCodes) |
| | | //{ |
| | | // dictDataService.deleteDictDataByIds(dictCodes); |
| | | // return success(); |
| | | //} |
| | | } |