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