| | |
| | | * 查询人体器官获取费用列表 |
| | | */ |
| | | @ApiOperation("查询人体器官获取费用列表") |
| | | @PreAuthorize("@ss.hasPermi('project:organcharge:list')") |
| | | // @PreAuthorize("@ss.hasPermi('project:organcharge:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(BaseOrgancharge baseOrgancharge) { |
| | | log.info("查询人体器官获取费用列表{}:", baseOrgancharge); |
| | |
| | | * 导出人体器官获取费用列表 |
| | | */ |
| | | @ApiOperation("导出人体器官获取费用列表") |
| | | @PreAuthorize("@ss.hasPermi('project:organcharge:export')") |
| | | // @PreAuthorize("@ss.hasPermi('project:organcharge:export')") |
| | | @Log(title = "人体器官获取费用", businessType = BusinessType.EXPORT) |
| | | @GetMapping("/export") |
| | | public AjaxResult export(BaseOrgancharge baseOrgancharge) { |
| | |
| | | * 获取人体器官获取费用详细信息 |
| | | */ |
| | | @ApiOperation("获取人体器官获取费用详细信息") |
| | | @PreAuthorize("@ss.hasPermi('project:organcharge:query')") |
| | | // @PreAuthorize("@ss.hasPermi('project:organcharge:query')") |
| | | @GetMapping(value = "/getInfo/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) { |
| | | log.info("获取人体器官获取费用详细信息{}:", id); |
| | |
| | | * 新增人体器官获取费用 |
| | | */ |
| | | @ApiOperation("新增人体器官获取费用") |
| | | @PreAuthorize("@ss.hasPermi('project:organcharge:add')") |
| | | // @PreAuthorize("@ss.hasPermi('project:organcharge:add')") |
| | | @Log(title = "人体器官获取费用", businessType = BusinessType.INSERT) |
| | | @PostMapping("/add") |
| | | @RepeatSubmit |
| | |
| | | * 修改人体器官获取费用 |
| | | */ |
| | | @ApiOperation("修改人体器官获取费用") |
| | | @PreAuthorize("@ss.hasPermi('project:organcharge:edit')") |
| | | // @PreAuthorize("@ss.hasPermi('project:organcharge:edit')") |
| | | @Log(title = "人体器官获取费用", businessType = BusinessType.UPDATE) |
| | | @PostMapping("/edit") |
| | | @RepeatSubmit |
| | |
| | | * 删除人体器官获取费用 |
| | | */ |
| | | @ApiOperation("删除人体器官获取费用") |
| | | @PreAuthorize("@ss.hasPermi('project:organcharge:remove')") |
| | | // @PreAuthorize("@ss.hasPermi('project:organcharge:remove')") |
| | | @GetMapping("/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) { |
| | | log.info("删除人体器官获取费用{}:", ids); |