package com.ygj.yuemum.dao.pay; import com.ygj.yuemum.domain.pay.CustomerPayVoucher; import org.springframework.stereotype.Repository; import java.util.List; @Repository public interface CustomerPayVoucherDao { List selectCustomerPayVoucher(String cp_orderno); List queryOrderPayPhoto(CustomerPayVoucher customerPayVoucher); int insertCustomerPayVoucher(CustomerPayVoucher customerPayVoucher); int deleteCustomerPayVoucher(String cv_filename); int deleteCustomerPayVoucherAll(String eh_code); int deleteOrderPayPhoto(CustomerPayVoucher customerPayVoucher); }