liusheng
2024-05-16 2f13f59f023fba63aa993172d48c14bcaaafb233
ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/BaseOrganchargeController.java
@@ -37,7 +37,7 @@
     * 查询人体器官获取费用列表
     */
    @ApiOperation("查询人体器官获取费用列表")
    @PreAuthorize("@ss.hasPermi('project:organcharge:list')")
    // @PreAuthorize("@ss.hasPermi('project:organcharge:list')")
    @GetMapping("/list")
    public TableDataInfo list(BaseOrgancharge baseOrgancharge) {
        log.info("查询人体器官获取费用列表{}:", baseOrgancharge);
@@ -50,7 +50,7 @@
     * 导出人体器官获取费用列表
     */
    @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) {
@@ -64,7 +64,7 @@
     * 获取人体器官获取费用详细信息
     */
    @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);
@@ -75,7 +75,7 @@
     * 新增人体器官获取费用
     */
    @ApiOperation("新增人体器官获取费用")
    @PreAuthorize("@ss.hasPermi('project:organcharge:add')")
    // @PreAuthorize("@ss.hasPermi('project:organcharge:add')")
    @Log(title = "人体器官获取费用", businessType = BusinessType.INSERT)
    @PostMapping("/add")
    @RepeatSubmit
@@ -90,7 +90,7 @@
     * 修改人体器官获取费用
     */
    @ApiOperation("修改人体器官获取费用")
    @PreAuthorize("@ss.hasPermi('project:organcharge:edit')")
    // @PreAuthorize("@ss.hasPermi('project:organcharge:edit')")
    @Log(title = "人体器官获取费用", businessType = BusinessType.UPDATE)
    @PostMapping("/edit")
    @RepeatSubmit
@@ -103,7 +103,7 @@
     * 删除人体器官获取费用
     */
    @ApiOperation("删除人体器官获取费用")
    @PreAuthorize("@ss.hasPermi('project:organcharge:remove')")
    // @PreAuthorize("@ss.hasPermi('project:organcharge:remove')")
    @GetMapping("/{ids}")
    public AjaxResult remove(@PathVariable Long[] ids) {
        log.info("删除人体器官获取费用{}:", ids);