| | |
| | | import com.ruoyi.common.enums.BusinessType; |
| | | import com.ruoyi.common.exception.ServiceException; |
| | | import com.ruoyi.common.tax.TaxtUtils; |
| | | import com.ruoyi.common.utils.SecurityUtils; |
| | | import com.ruoyi.common.utils.StringUtils; |
| | | import com.ruoyi.common.utils.bean.DtoConversionUtils; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | |
| | | public TableDataInfo list(ServiceFund serviceFund) { |
| | | startPage(); |
| | | //List<ServiceFund> list = serviceFundService.queryList(serviceFund); |
| | | SysUser user = SecurityUtils.getLoginUser().getUser(); |
| | | serviceFund.setUsername(user.getNickName()); |
| | | List<ServiceFund> list = serviceFundService.selectServiceFundList(serviceFund); |
| | | return getDataTable(list); |
| | | } |
| | |
| | | @ApiOperation("删除费用申请主") |
| | | //@PreAuthorize("@ss.hasPermi('project:fund:remove')") |
| | | @Log(title = "费用申请主", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{ids}") |
| | | @GetMapping("/remove/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) { |
| | | return toAjax(serviceFundService.removeByIds(Arrays.asList(ids))); |
| | | } |