MallBizRefundItemDao.java 590 Bytes
package com.diligrp.cashier.mall.dao;


import com.diligrp.cashier.mall.model.MallBizRefundItem;
import com.diligrp.cashier.shared.mybatis.MybatisMapperSupport;

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