1234567891011121314151617181920212223242526272829303132333435363738394041 |
- package com.caimei.modules.order.dao;
- import com.caimei.modules.order.entity.OnlineRefundVo;
- 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.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);
- String findPayType(Integer orderId);
- String findUserId(Integer orderId);
- void insertOnlineRefund(OnlineRefundVo onlineRefundVo);
- }
|