MallBizPaymentOrderDao.java
1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package com.diligrp.cashier.mall.dao;
import com.diligrp.cashier.mall.model.MallBizPayment;
import com.diligrp.cashier.mall.model.MallBizPaymentOrder;
import com.diligrp.cashier.shared.mybatis.MybatisMapperSupport;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
* MallBizPaymentOrderDao
* @author dengwei
*/
public interface MallBizPaymentOrderDao extends MybatisMapperSupport {
int deleteByPrimaryKey(Long id);
int insert(MallBizPaymentOrder record);
int insertSelective(MallBizPaymentOrder record);
MallBizPaymentOrder selectByPrimaryKey(Long id);
int updateByPrimaryKeySelective(MallBizPaymentOrder record);
int updateByPrimaryKey(MallBizPaymentOrder record);
void batchInsert(@Param("list") List<MallBizPaymentOrder> mallBizPaymentOrders);
MallBizPaymentOrder getMallBizPaymentOrder(MallBizPaymentOrder mallBizPaymentOrder);
List<MallBizPaymentOrder> listPaymentOrderByBizPaymentId(@Param("bizPaymentId") Long bizPaymentId);
void updateByPayment(MallBizPayment mallBizPayment);
List<MallBizPaymentOrder> listPaymentOrderByBizOrderId(@Param("bizOrderId") Long bizOrderId);
List<MallBizPaymentOrder> listPaymentOrderByBizOrderIds(@Param("bizOrderIds") List<Long> bizOrderIds);
}