- package com.ygj.yuemum.dao.pay;
- import com.ygj.yuemum.domain.pay.CustomerPay;
- import org.springframework.stereotype.Repository;
- import java.util.List;
- @Repository
- public interface CustomerPayDao {
- List<CustomerPay> selectCustomerPay(String cp_orderno);
- int insertCustomerPay(CustomerPay customerPay);
- CustomerPay queryYSOrderPay(CustomerPay customerPay);
- int checkCustomerPay (CustomerPay customerPay);
- }
|