liusheng
2024-05-16 2f13f59f023fba63aa993172d48c14bcaaafb233
ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/BaseAnnextypeController.java
@@ -41,7 +41,7 @@
     * 查询捐献附件列表
     */
    @ApiOperation("查询捐献附件列表")
    @PreAuthorize("@ss.hasPermi('system:annextype:list')")
    // @PreAuthorize("@ss.hasPermi('system:annextype:list')")
    @GetMapping("/list")
    public TableDataInfo list(BaseAnnextype baseAnnextype) {
        startPage();
@@ -53,7 +53,7 @@
     * 导出捐献附件列表
     */
    @ApiOperation("导出捐献附件列表")
    @PreAuthorize("@ss.hasPermi('system:annextype:export')")
    // @PreAuthorize("@ss.hasPermi('system:annextype:export')")
    @Log(title = "捐献附件", businessType = BusinessType.EXPORT)
    @GetMapping("/export")
    public AjaxResult export(BaseAnnextype baseAnnextype) {
@@ -67,7 +67,7 @@
     * 获取捐献附件详细信息
     */
    @ApiOperation("获取捐献附件详细信息")
    @PreAuthorize("@ss.hasPermi('system:annextype:query')")
    // @PreAuthorize("@ss.hasPermi('system:annextype:query')")
    @GetMapping(value = "/getInfo/{id}")
    public AjaxResult getInfo(@PathVariable("id") Long id) {
        log.info("获取捐献附件详细信息{}:", id);
@@ -79,7 +79,7 @@
     * 新增捐献附件
     */
    @ApiOperation("新增捐献附件")
    @PreAuthorize("@ss.hasPermi('system:annextype:add')")
    // @PreAuthorize("@ss.hasPermi('system:annextype:add')")
    @Log(title = "捐献附件", businessType = BusinessType.INSERT)
    @PostMapping("/add")
    @RepeatSubmit
@@ -97,7 +97,7 @@
     * 修改捐献附件
     */
    @ApiOperation("修改捐献附件")
    @PreAuthorize("@ss.hasPermi('system:annextype:edit')")
    // @PreAuthorize("@ss.hasPermi('system:annextype:edit')")
    @Log(title = "捐献附件", businessType = BusinessType.UPDATE)
    @PostMapping("/edit")
    @RepeatSubmit
@@ -114,7 +114,7 @@
     * 删除捐献附件
     */
    @ApiOperation("删除捐献附件")
    @PreAuthorize("@ss.hasPermi('system:annextype:remove')")
    // @PreAuthorize("@ss.hasPermi('system:annextype:remove')")
    @Log(title = "捐献附件", businessType = BusinessType.DELETE)
    @GetMapping("/remove/{ids}")
    public AjaxResult remove(@PathVariable Long[] ids) {