123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- package com.caimei.modules.order.dao;
- import com.thinkgem.jeesite.common.persistence.CrudDao;
- import com.thinkgem.jeesite.common.persistence.annotation.MyBatisDao;
- import com.caimei.modules.order.entity.CmReceiptOrderRelation;
- import org.apache.ibatis.annotations.Param;
- import java.util.ArrayList;
- import java.util.Date;
- import java.util.List;
- /**
- * 收款项和订单关系DAO接口
- * @author lwt
- * @version 2019-06-20
- */
- @MyBatisDao
- public interface CmReceiptOrderRelationDao extends CrudDao<CmReceiptOrderRelation> {
- List<CmReceiptOrderRelation> findByReceiptID(@Param("receiptID") String receiptID);
- List<CmReceiptOrderRelation> findByOrderID(@Param("orderID")String orderID);
- List<CmReceiptOrderRelation> findByOrderIDGroupBy(@Param("orderID")String orderID);
- List<CmReceiptOrderRelation> findByOrderIDGroup(@Param("orderID")String orderID);
- Double findPayFeeByOrderID(@Param("orderID")String orderID);
- List<Integer> toAudit(@Param("orderID")Integer orderID);
- CmReceiptOrderRelation findOrderRelation(Integer orderID);
- Date findOnlinePayment(Integer orderID);
- Double findOnlineMoneyPay(Integer orderId);
- List<String> findMborderId(Integer userId);
- Integer findUserId(Integer orderId);
- Double findMoney(String mbOrderId);
- String findPayTypeByOrderRequestNo(String mbOrderId);
- }
|