MallBizOrderItemDao.java
730 Bytes
package com.diligrp.cashier.mall.dao;
import com.diligrp.cashier.mall.model.MallBizOrderItem;
import com.diligrp.cashier.shared.mybatis.MybatisMapperSupport;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
* MallBizOrderItemDao
*
* @author dengwei
*/
public interface MallBizOrderItemDao extends MybatisMapperSupport {
int deleteByPrimaryKey(Long id);
int insert(MallBizOrderItem record);
int insertSelective(MallBizOrderItem record);
MallBizOrderItem selectByPrimaryKey(Long id);
int updateByPrimaryKeySelective(MallBizOrderItem record);
int updateByPrimaryKey(MallBizOrderItem record);
void batchInsert(@Param("list") List<MallBizOrderItem> mallBizOrderItems);
}