package com.matrix.system.hive.dao; import java.util.List; import com.matrix.core.pojo.PaginationVO; import com.matrix.system.hive.bean.MoneyCardUseFlow; import org.apache.ibatis.annotations.Param; /** * This field was generated by Zking.software.Codegen. * @date 2016-09-17 10:17 */ public interface MoneyCardUseFlowDao{ public int insert(MoneyCardUseFlow moneyCardUseFlow); public int update(MoneyCardUseFlow moneyCardUseFlow); public int deleteByIds(@Param("list") List list); public int deleteById(Long id); public List selectInPage(@Param("record") MoneyCardUseFlow moneyCardUseFlow, @Param("pageVo") PaginationVO pageVo); public List selectByModel(@Param("record") MoneyCardUseFlow moneyCardUseFlow); public int selectTotalRecord(@Param("record") MoneyCardUseFlow moneyCardUseFlow); public MoneyCardUseFlow selectById(Long id); }