MallBizPaymentOrderDao.java 846 Bytes
package com.diligrp.cashier.mall.dao;

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);
}