liusheng
2024-04-22 63ebc0007e9958bd6680c6841a7460b053275790
ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceDonateannexController.java
@@ -47,7 +47,7 @@
     * 查询捐献附件列表
     */
    @ApiOperation("附件管理列表")
    //@PreAuthorize("@ss.hasPermi('project:donateannex:list')")
    //// @PreAuthorize("@ss.hasPermi('project:donateannex:list')")
    @GetMapping("/list")
    public TableDataInfo list(ServiceDonateannex serviceDonateannex) {
        log.info("附件管理列表:{}", serviceDonateannex);
@@ -69,7 +69,7 @@
     * 导出捐献附件列表
     */
    @ApiOperation("导出捐献附件列表")
    //@PreAuthorize("@ss.hasPermi('project:donateannex:export')")
    //// @PreAuthorize("@ss.hasPermi('project:donateannex:export')")
    @Log(title = "捐献附件", businessType = BusinessType.EXPORT)
    @GetMapping("/export")
    public AjaxResult export(ServiceDonateannex serviceDonateannex) {
@@ -83,7 +83,7 @@
     * 获取捐献附件详细信息
     */
    @ApiOperation("通过id获得捐献附件信息")
    //@PreAuthorize("@ss.hasPermi('project:donateannex:query')")
    //// @PreAuthorize("@ss.hasPermi('project:donateannex:query')")
    @GetMapping(value = "/{id}")
    public AjaxResult getInfo(@PathVariable("id") Long id) {
        log.info("通过id获得捐献附件信息:{}", id);
@@ -94,7 +94,7 @@
     * 新增捐献附件
     */
    @ApiOperation("新增捐献附件信息")
    //@PreAuthorize("@ss.hasPermi('project:donateannex:add')")
    //// @PreAuthorize("@ss.hasPermi('project:donateannex:add')")
    @Log(title = "捐献附件", businessType = BusinessType.INSERT)
    @PostMapping("/add")
    @RepeatSubmit
@@ -107,7 +107,7 @@
     * 修改捐献附件
     */
    @ApiOperation("修改捐献附件信息")
    //@PreAuthorize("@ss.hasPermi('project:donateannex:edit')")
    //// @PreAuthorize("@ss.hasPermi('project:donateannex:edit')")
    @Log(title = "捐献附件", businessType = BusinessType.UPDATE)
    @PostMapping("/edit")
    @RepeatSubmit
@@ -121,7 +121,7 @@
     * 修改捐献附件
     */
    @ApiOperation("修改潜在捐献、伦理审查、完成登记、医学评估附件信息")
    //@PreAuthorize("@ss.hasPermi('project:donateannex:edit')")
    //// @PreAuthorize("@ss.hasPermi('project:donateannex:edit')")
    @Log(title = "捐献附件", businessType = BusinessType.UPDATE)
    @PostMapping("/editannexfiles")
    @RepeatSubmit
@@ -134,7 +134,7 @@
     * 删除捐献附件
     */
    @ApiOperation("删除捐献文件信息")
    //@PreAuthorize("@ss.hasPermi('project:donateannex:remove')")
    //// @PreAuthorize("@ss.hasPermi('project:donateannex:remove')")
    @Log(title = "捐献附件", businessType = BusinessType.DELETE)
    @GetMapping("/remove/{ids}")
    public AjaxResult remove(@PathVariable Long[] ids) {