123456789101112131415161718192021222324 |
- 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<PaymentInvoice> getList(PaymentInvoice paymentInvoice);
- List<PaymentInvoice> getPaymentId(long paymentId);
- PaymentInvoice get(long id);
- List<PaymentInvoice> getPaymentOrdinaryId(long id);
- }
|