| | |
| | | package com.ruoyi.web.controller.project; |
| | | |
| | | import com.ruoyi.common.annotation.Log; |
| | | import com.ruoyi.common.annotation.NotRepeatCommit; |
| | | import com.ruoyi.common.annotation.RepeatSubmit; |
| | | import com.ruoyi.common.core.controller.BaseController; |
| | | import com.ruoyi.common.core.domain.AjaxResult; |
| | |
| | | @PreAuthorize("@ss.hasPermi('system:annextype:add')") |
| | | @Log(title = "捐献附件", businessType = BusinessType.INSERT) |
| | | @PostMapping("/add") |
| | | @RepeatSubmit |
| | | @RepeatSubmit |
| | | public AjaxResult add(@RequestBody BaseAnnextype baseAnnextype) { |
| | | log.info("新增捐献附件{}:", baseAnnextype); |
| | | |