| | |
| | | */ |
| | | //@PreAuthorize("@ss.hasPermi('system:wildcard:edit')") |
| | | @Log(title = "患者信息通配符", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | @PostMapping("/edit") |
| | | public AjaxResult edit(@RequestBody PatWildcard patWildcard) |
| | | { |
| | | return toAjax(patWildcardService.updatePatWildcard(patWildcard)); |
| | |
| | | */ |
| | | //@PreAuthorize("@ss.hasPermi('system:wildcard:remove')") |
| | | @Log(title = "患者信息通配符", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{ids}") |
| | | @GetMapping("/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) |
| | | { |
| | | return toAjax(patWildcardService.deletePatWildcardByIds(ids)); |