package com.bosshand.virgo.api.dao; import com.bosshand.virgo.api.model.PaymentInvoice; import org.apache.ibatis.annotations.Mapper; import java.util.List; @Mapper public interface PaymentInvoiceDao { int insert (PaymentInvoice paymentInvoice); int update(PaymentInvoice paymentInvoice); int delete(long id); List getList(PaymentInvoice paymentInvoice); List getPaymentId(long paymentId); PaymentInvoice get(long id); List getPaymentOrdinaryId(long id); }