| | |
| | | import com.ruoyi.common.core.domain.AjaxResult; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | import com.ruoyi.common.enums.BusinessType; |
| | | import com.ruoyi.project.domain.ServiceDonateannex; |
| | | import com.ruoyi.project.domain.ServiceFund; |
| | | import com.ruoyi.project.domain.ServiceFundtax; |
| | | import com.ruoyi.project.domain.vo.FundTaxVO; |
| | |
| | | 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(); |
| | | }); |
| | | return getDataTable(list); |
| | | } |
| | | // |