package com.ruoyi.web.controller.project; import java.util.Arrays; import java.util.List; import com.ruoyi.project.domain.vo.DonateFollowupVO; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PutMapping; import org.springframework.web.bind.annotation.DeleteMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import com.ruoyi.common.annotation.Log; import com.ruoyi.common.annotation.RepeatSubmit; import com.ruoyi.common.core.controller.BaseController; import com.ruoyi.common.core.domain.AjaxResult; import com.ruoyi.common.enums.BusinessType; import com.ruoyi.project.domain.ServiceDonatefollowup; import com.ruoyi.project.service.IServiceDonatefollowupService; import com.ruoyi.common.utils.poi.ExcelUtil; import com.ruoyi.common.core.page.TableDataInfo; /** * 捐献随访Controller * * @author ruoyi * @date 2021-12-10 */ @Api("捐献随访") @RestController @RequestMapping("/project/donatefollowup") public class ServiceDonatefollowupController extends BaseController { @Autowired private IServiceDonatefollowupService serviceDonatefollowupService; /** * 查询捐献随访列表 */ @ApiOperation("查询捐献随访列表") //@PreAuthorize("@ss.hasPermi('project:donatefollowup:list')") @GetMapping("/list") public TableDataInfo list(ServiceDonatefollowup serviceDonatefollowup) { startPage(); //List list = serviceDonatefollowupService.queryList(serviceDonatefollowup); List list = serviceDonatefollowupService.selectAll(serviceDonatefollowup); return getDataTable(list); } @GetMapping("/listnew") public TableDataInfo listnew (DonateFollowupVO donateFollowupVO){ startPage(); List list = serviceDonatefollowupService.selectVOList(donateFollowupVO); return getDataTable(list); } /** * 导出捐献随访列表 */ @ApiOperation("导出捐献随访列表") //@PreAuthorize("@ss.hasPermi('project:donatefollowup:export')") @Log(title = "捐献随访", businessType = BusinessType.EXPORT) @GetMapping("/export") public AjaxResult export(ServiceDonatefollowup serviceDonatefollowup) { List list = serviceDonatefollowupService.queryList(serviceDonatefollowup); ExcelUtil util = new ExcelUtil(ServiceDonatefollowup.class); return util.exportExcel(list, "捐献随访数据"); } /** * 获取捐献随访详细信息 */ @ApiOperation("获取捐献随访详细信息") //@PreAuthorize("@ss.hasPermi('project:donatefollowup:query')") @GetMapping(value = "/{id}") public AjaxResult getInfo(@PathVariable("id") Long id) { //return AjaxResult.success(serviceDonatefollowupService.getById(id)); return AjaxResult.success(serviceDonatefollowupService.selectFollowUpById(id)); } /** * 新增捐献随访 */ @ApiOperation("新增捐献随访") //@PreAuthorize("@ss.hasPermi('project:donatefollowup:add')") @Log(title = "捐献随访", businessType = BusinessType.INSERT) @PostMapping @RepeatSubmit public AjaxResult add(@RequestBody ServiceDonatefollowup serviceDonatefollowup) { return toAjax(serviceDonatefollowupService.save(serviceDonatefollowup)); } /** * 修改捐献随访 */ @ApiOperation("修改捐献随访") //@PreAuthorize("@ss.hasPermi('project:donatefollowup:edit')") @Log(title = "捐献随访", businessType = BusinessType.UPDATE) @PostMapping("/edit") @RepeatSubmit public AjaxResult edit(@RequestBody ServiceDonatefollowup serviceDonatefollowup) { return toAjax(serviceDonatefollowupService.updateById(serviceDonatefollowup)); } /** * 删除捐献随访 */ @ApiOperation("删除捐献随访") //@PreAuthorize("@ss.hasPermi('project:donatefollowup:remove')") @Log(title = "捐献随访", businessType = BusinessType.DELETE) @GetMapping("/remove/{ids}") public AjaxResult remove(@PathVariable Long[] ids) { return toAjax(serviceDonatefollowupService.removeByIds(Arrays.asList(ids))); } }