| | |
| | | import com.ruoyi.project.domain.ServiceFund; |
| | | import com.ruoyi.project.domain.ServiceFundtax; |
| | | import com.ruoyi.project.domain.vo.FundTaxVO; |
| | | import com.ruoyi.project.domain.vo.SpFinancialExpensesFundOut; |
| | | import com.ruoyi.project.service.IServiceFundService; |
| | | import com.ruoyi.project.service.IServiceFundtaxService; |
| | | import io.swagger.annotations.Api; |
| | |
| | | public TableDataInfo list(ServiceFundtax serviceFundtax) { |
| | | startPage(); |
| | | List<ServiceFundtax> list = serviceFundtaxService.queryList(serviceFundtax); |
| | | Collections.sort(list, (sft1, sft2) -> { |
| | | Long i = sft2.getId() - sft1.getId(); |
| | | return i.intValue(); |
| | | }); |
| | | // list.sort(Comparator.comparing(ServiceFundtax::getCreateTime, Comparator.nullsLast(Comparator.reverseOrder()))); |
| | | return getDataTable(list); |
| | | } |
| | | // |
| | |
| | | // * 导出专家费用算税申请主列表 |
| | | // */ |
| | | // @ApiOperation("导出专家费用算税申请主列表") |
| | | // @PreAuthorize("@ss.hasPermi('system:fundtax:export')") |
| | | // // @PreAuthorize("@ss.hasPermi('system:fundtax:export')") |
| | | // @Log(title = "专家费用算税申请主", businessType = BusinessType.EXPORT) |
| | | // @GetMapping("/export") |
| | | // public AjaxResult export(ServiceFundtax serviceFundtax) { |