| | |
| | | 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); |
| | | } |
| | | // |