| | |
| | | import com.ruoyi.sales.dto.ReceiptPaymentDto; |
| | | import com.ruoyi.sales.pojo.ReceiptPayment; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | public interface ReceiptPaymentService { |
| | |
| | | * @param receiptPayment |
| | | * @return |
| | | */ |
| | | int receiptPaymentAdd(ReceiptPayment receiptPayment); |
| | | int receiptPaymentSaveOrUpdate(ReceiptPayment receiptPayment); |
| | | |
| | | /** |
| | | * 回款登记修改 |
| | |
| | | * @return |
| | | */ |
| | | IPage<ReceiptPaymentDto> receiptPaymentListPage (Page page, ReceiptPaymentDto receiptPaymentDto); |
| | | |
| | | /** |
| | | * 回款登记详情 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | ReceiptPaymentDto receiptPaymentInfo(Integer id); |
| | | |
| | | BigDecimal getReceiptAmount(); |
| | | } |