CustomerPayVoucherDao.java 626 B

1234567891011121314151617
  1. package com.ygj.yuemum.dao.pay;
  2. import com.ygj.yuemum.domain.pay.CustomerPayVoucher;
  3. import org.springframework.stereotype.Repository;
  4. import java.util.List;
  5. @Repository
  6. public interface CustomerPayVoucherDao {
  7. List<CustomerPayVoucher> selectCustomerPayVoucher(String cp_orderno);
  8. List<CustomerPayVoucher> queryOrderPayPhoto(CustomerPayVoucher customerPayVoucher);
  9. int insertCustomerPayVoucher(CustomerPayVoucher customerPayVoucher);
  10. int deleteCustomerPayVoucher(String cv_filename);
  11. int deleteCustomerPayVoucherAll(String eh_code);
  12. int deleteOrderPayPhoto(CustomerPayVoucher customerPayVoucher);
  13. }