liding
2025-05-19 53bdb26a0ae994418e92d93aab23d6f5e7225f37
src/main/java/com/ruoyi/sales/service/ReceiptPaymentService.java
@@ -5,6 +5,7 @@
import com.ruoyi.sales.dto.ReceiptPaymentDto;
import com.ruoyi.sales.pojo.ReceiptPayment;
import java.math.BigDecimal;
import java.util.List;
public interface ReceiptPaymentService {
@@ -14,7 +15,7 @@
     * @param receiptPayment
     * @return
     */
    int receiptPaymentAdd(ReceiptPayment receiptPayment);
    int receiptPaymentSaveOrUpdate(ReceiptPayment receiptPayment);
    /**
     * 回款登记修改
@@ -37,4 +38,13 @@
     * @return
     */
    IPage<ReceiptPaymentDto> receiptPaymentListPage (Page page, ReceiptPaymentDto receiptPaymentDto);
    /**
     * 回款登记详情
     * @param id
     * @return
     */
    ReceiptPaymentDto receiptPaymentInfo(Integer id);
    BigDecimal getReceiptAmount();
}