package com.ruoyi.web.controller.project; 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.core.page.TableDataInfo; import com.ruoyi.common.enums.BusinessType; import com.ruoyi.common.utils.poi.ExcelUtil; import com.ruoyi.project.domain.ServiceFundtax; import com.ruoyi.project.service.IServiceFundtaxService; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.web.bind.annotation.*; import java.util.Arrays; import java.util.List; /** * 专家费用算税申请主Controller * * @author ruoyi * @date 2024-03-13 */ @Api("专家费用算税申请主") @RestController @RequestMapping("/system/fundtax") public class ServiceFundtaxController extends BaseController { @Autowired private IServiceFundtaxService serviceFundtaxService; /** * 查询专家费用算税申请主列表 */ @ApiOperation("查询专家费用算税申请主列表") @PreAuthorize("@ss.hasPermi('system:fundtax:list')") @GetMapping("/list") public TableDataInfo list(ServiceFundtax serviceFundtax) { startPage(); List list = serviceFundtaxService.queryList(serviceFundtax); return getDataTable(list); } /** * 导出专家费用算税申请主列表 */ @ApiOperation("导出专家费用算税申请主列表") @PreAuthorize("@ss.hasPermi('system:fundtax:export')") @Log(title = "专家费用算税申请主", businessType = BusinessType.EXPORT) @GetMapping("/export") public AjaxResult export(ServiceFundtax serviceFundtax) { List list = serviceFundtaxService.queryList(serviceFundtax); ExcelUtil util = new ExcelUtil(ServiceFundtax.class); return util.exportExcel(list, "专家费用算税申请主数据"); } /** * 获取专家费用算税申请主详细信息 */ @ApiOperation("获取专家费用算税申请主详细信息") @PreAuthorize("@ss.hasPermi('system:fundtax:query')") @GetMapping(value = "/{id}") public AjaxResult getInfo(@PathVariable("id") Long id) { return AjaxResult.success(serviceFundtaxService.getById(id)); } /** * 新增专家费用算税申请主 */ @ApiOperation("新增专家费用算税申请主") @PreAuthorize("@ss.hasPermi('system:fundtax:add')") @Log(title = "专家费用算税申请主", businessType = BusinessType.INSERT) @PostMapping @RepeatSubmit public AjaxResult add(@RequestBody ServiceFundtax serviceFundtax) { return toAjax(serviceFundtaxService.save(serviceFundtax)); } /** * 修改专家费用算税申请主 */ @ApiOperation("修改专家费用算税申请主") @PreAuthorize("@ss.hasPermi('system:fundtax:edit')") @Log(title = "专家费用算税申请主", businessType = BusinessType.UPDATE) @PutMapping @RepeatSubmit public AjaxResult edit(@RequestBody ServiceFundtax serviceFundtax) { return toAjax(serviceFundtaxService.updateById(serviceFundtax)); } /** * 删除专家费用算税申请主 */ @ApiOperation("删除专家费用算税申请主") @PreAuthorize("@ss.hasPermi('system:fundtax:remove')") @Log(title = "专家费用算税申请主", businessType = BusinessType.DELETE) @DeleteMapping("/{ids}") public AjaxResult remove(@PathVariable Long[] ids) { return toAjax(serviceFundtaxService.removeByIds(Arrays.asList(ids))); } }