| | |
| | | import com.ruoyi.sales.pojo.ReceiptPayment; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.math.BigDecimal; |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | |
| | | * 查询回款记录分页 |
| | | */ |
| | | List<ReceiptPaymentDto> receiptPaymentHistoryListNoPage(ReceiptPaymentDto receiptPaymentDto); |
| | | |
| | | /** |
| | | * 全导出回款列表 |
| | | */ |
| | | void exportPaymentList(HttpServletResponse response); |
| | | |
| | | /** |
| | | * 部分导出回款列表 |
| | | */ |
| | | void exportPaymentList(HttpServletResponse response, ArrayList<Long> ids); |
| | | } |