MallBizRefundDao.java 567 Bytes
package com.diligrp.cashier.mall.dao;


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

public interface MallBizRefundDao extends MybatisMapperSupport {
    int deleteByPrimaryKey(Long id);

    int insert(MallBizRefund record);

    int insertSelective(MallBizRefund record);

    MallBizRefund selectByPrimaryKey(Long id);

    int updateByPrimaryKeySelective(MallBizRefund record);

    int updateByPrimaryKey(MallBizRefund record);

    MallBizRefund getMallBizRefund(MallBizRefund refund);
}