PaymentInvoiceDao.java 542 B

123456789101112131415161718192021222324
  1. package com.bosshand.virgo.api.dao;
  2. import com.bosshand.virgo.api.model.PaymentInvoice;
  3. import org.apache.ibatis.annotations.Mapper;
  4. import java.util.List;
  5. @Mapper
  6. public interface PaymentInvoiceDao {
  7. int insert (PaymentInvoice paymentInvoice);
  8. int update(PaymentInvoice paymentInvoice);
  9. int delete(long id);
  10. List<PaymentInvoice> getList(PaymentInvoice paymentInvoice);
  11. List<PaymentInvoice> getPaymentId(long paymentId);
  12. PaymentInvoice get(long id);
  13. List<PaymentInvoice> getPaymentOrdinaryId(long id);
  14. }