1234567891011121314151617 |
- 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<CustomerPayVoucher> selectCustomerPayVoucher(String cp_orderno);
- List<CustomerPayVoucher> queryOrderPayPhoto(CustomerPayVoucher customerPayVoucher);
- int insertCustomerPayVoucher(CustomerPayVoucher customerPayVoucher);
- int deleteCustomerPayVoucher(String cv_filename);
- int deleteCustomerPayVoucherAll(String eh_code);
- int deleteOrderPayPhoto(CustomerPayVoucher customerPayVoucher);
- }
|