liusheng
2024-07-22 9e99e7e192c62c2274f8f5362b354cbf55c3d80f
ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceEthicalreviewopinionsController.java
@@ -32,7 +32,7 @@
    /**
     * 查询伦理审查专家意见列表
     */
    //@PreAuthorize("@ss.hasPermi('project:ethicalreviewopinions:list')")
    //// @PreAuthorize("@ss.hasPermi('project:ethicalreviewopinions:list')")
    @GetMapping("/list")
    public TableDataInfo list(ServiceEthicalreviewopinions serviceEthicalreviewopinions) {
        startPage();
@@ -51,7 +51,7 @@
    /**
     * 导出伦理审查专家意见列表
     */
    //@PreAuthorize("@ss.hasPermi('project:ethicalreviewopinions:export')")
    //// @PreAuthorize("@ss.hasPermi('project:ethicalreviewopinions:export')")
    @Log(title = "伦理审查专家意见", businessType = BusinessType.EXPORT)
    @GetMapping("/export")
    public AjaxResult export(ServiceEthicalreviewopinions serviceEthicalreviewopinions) {
@@ -63,7 +63,7 @@
    /**
     * 获取伦理审查专家意见详细信息
     */
    //@PreAuthorize("@ss.hasPermi('project:ethicalreviewopinions:query')")
    //// @PreAuthorize("@ss.hasPermi('project:ethicalreviewopinions:query')")
    @GetMapping(value = "/{id}")
    public AjaxResult getInfo(@PathVariable("id") Long id) {
        return AjaxResult.success(serviceEthicalreviewopinionsService.getById(id));
@@ -72,7 +72,7 @@
    /**
     * 新增伦理审查专家意见
     */
    //@PreAuthorize("@ss.hasPermi('project:ethicalreviewopinions:add')")
    //// @PreAuthorize("@ss.hasPermi('project:ethicalreviewopinions:add')")
    @Log(title = "伦理审查专家意见", businessType = BusinessType.INSERT)
    @PostMapping("/add")
//    @NotRepeatCommit(key = "param:arg[1]", value = 30000)
@@ -84,7 +84,7 @@
    /**
     * 修改伦理审查专家意见
     */
    //@PreAuthorize("@ss.hasPermi('project:ethicalreviewopinions:edit')")
    //// @PreAuthorize("@ss.hasPermi('project:ethicalreviewopinions:edit')")
    @Log(title = "伦理审查专家意见", businessType = BusinessType.UPDATE)
    @PostMapping("/edit")
//    @RepeatSubmit
@@ -95,7 +95,7 @@
    /**
     * 删除伦理审查专家意见
     */
    //@PreAuthorize("@ss.hasPermi('project:ethicalreviewopinions:remove')")
    //// @PreAuthorize("@ss.hasPermi('project:ethicalreviewopinions:remove')")
    @Log(title = "伦理审查专家意见", businessType = BusinessType.DELETE)
    @GetMapping("/remove/{ids}")
    public AjaxResult remove(@PathVariable Long[] ids) {