MallBizOrderAddressDao.java 758 Bytes
package com.diligrp.cashier.mall.dao;

import com.diligrp.cashier.mall.model.MallBizOrderAddress;
import com.diligrp.cashier.shared.mybatis.MybatisMapperSupport;
import org.apache.ibatis.annotations.Param;

import java.util.List;

/**
 * MallBizOrderAddressDao
 *
 * @author dengwei
 */
public interface MallBizOrderAddressDao extends MybatisMapperSupport {
    int deleteByPrimaryKey(Long id);

    int insert(MallBizOrderAddress record);

    int insertSelective(MallBizOrderAddress record);

    MallBizOrderAddress selectByPrimaryKey(Long id);

    int updateByPrimaryKeySelective(MallBizOrderAddress record);

    int updateByPrimaryKey(MallBizOrderAddress record);

    void batchInsert(@Param("list") List<MallBizOrderAddress> mallBizOrderAddress);
}