liusheng
2025-01-02 b6dd47b05107fc36d8ff4f7f29a4446521f95503
ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceDonatefollowupController.java
@@ -43,7 +43,7 @@
     * 查询捐献随访列表
     */
    @ApiOperation("查询捐献随访列表")
    //@PreAuthorize("@ss.hasPermi('project:donatefollowup:list')")
    //// @PreAuthorize("@ss.hasPermi('project:donatefollowup:list')")
    @GetMapping("/list")
    public TableDataInfo list(ServiceDonatefollowup serviceDonatefollowup) {
        startPage();
@@ -65,7 +65,7 @@
     * 导出捐献随访列表
     */
    @ApiOperation("导出捐献随访列表")
    //@PreAuthorize("@ss.hasPermi('project:donatefollowup:export')")
    //// @PreAuthorize("@ss.hasPermi('project:donatefollowup:export')")
    @Log(title = "捐献随访", businessType = BusinessType.EXPORT)
    @GetMapping("/export")
    public AjaxResult export(ServiceDonatefollowup serviceDonatefollowup) {
@@ -78,7 +78,7 @@
     * 获取捐献随访详细信息
     */
    @ApiOperation("获取捐献随访详细信息")
    //@PreAuthorize("@ss.hasPermi('project:donatefollowup:query')")
    //// @PreAuthorize("@ss.hasPermi('project:donatefollowup:query')")
    @GetMapping(value = "/{id}")
    public AjaxResult getInfo(@PathVariable("id") Long id) {
        //return AjaxResult.success(serviceDonatefollowupService.getById(id));
@@ -89,7 +89,7 @@
     * 新增捐献随访
     */
    @ApiOperation("新增捐献随访")
    //@PreAuthorize("@ss.hasPermi('project:donatefollowup:add')")
    //// @PreAuthorize("@ss.hasPermi('project:donatefollowup:add')")
    @Log(title = "捐献随访", businessType = BusinessType.INSERT)
    @PostMapping("/add")
    @RepeatSubmit
@@ -102,7 +102,7 @@
     * 修改捐献随访
     */
    @ApiOperation("修改捐献随访")
    //@PreAuthorize("@ss.hasPermi('project:donatefollowup:edit')")
    //// @PreAuthorize("@ss.hasPermi('project:donatefollowup:edit')")
    @Log(title = "捐献随访", businessType = BusinessType.UPDATE)
    @PostMapping("/edit")
    @RepeatSubmit
@@ -115,7 +115,7 @@
     * 删除捐献随访
     */
    @ApiOperation("删除捐献随访")
    //@PreAuthorize("@ss.hasPermi('project:donatefollowup:remove')")
    //// @PreAuthorize("@ss.hasPermi('project:donatefollowup:remove')")
    @Log(title = "捐献随访", businessType = BusinessType.DELETE)
    @GetMapping("/remove/{ids}")
    public AjaxResult remove(@PathVariable Long[] ids) {