| | |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | public interface ReceiptPaymentMapper extends BaseMapper<ReceiptPayment> { |
| | | |
| | |
| | | */ |
| | | BigDecimal getReceiptAmount(@Param("customerId") Integer customerId, @Param("total") long total); |
| | | |
| | | /** |
| | | * 查询回款记录 |
| | | */ |
| | | List<ReceiptPaymentDto> receiptPaymentHistoryList(@Param("params") ReceiptPaymentDto receiptPaymentDto); |
| | | |
| | | /** |
| | | * 查询回款记录分页 |
| | | */ |
| | | IPage<ReceiptPaymentDto> receiptPaymentHistoryListPage(Page page,@Param("params") ReceiptPaymentDto receiptPaymentDto); |
| | | |
| | | } |