MallBizRefundItemDao.java
536 Bytes
package com.diligrp.cashier.mall.dao;
import com.diligrp.cashier.mall.model.MallBizRefundItem;
import com.diligrp.cashier.shared.mybatis.MybatisMapperSupport;
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);
}