package com.matrix.system.shopXcx.dao; import org.apache.ibatis.annotations.Param; import java.util.List; import java.util.Map; import com.matrix.core.pojo.PaginationVO; import com.matrix.system.shopXcx.bean.ShopScoreExchange; /** * @description 用户积分兑换记录 * @author jyy * @date 2019-08-09 15:10 */ public interface ShopScoreExchangeDao{ public int insert(@Param("item") ShopScoreExchange shopScoreExchange); public int batchInsert(@Param("list") List shopScoreExchangeList); public int updateByMap(Map modifyMap); public int updateByModel(@Param("record") ShopScoreExchange shopScoreExchange); public int deleteByIds(@Param("list") List list); public int deleteById(Integer id); public int deleteByModel(@Param("record") ShopScoreExchange shopScoreExchange); public List selectInPage(@Param("record") ShopScoreExchange shopScoreExchange, @Param("pageVo") PaginationVO pageVo); public List selectByModel(@Param("record") ShopScoreExchange shopScoreExchange); public int selectTotalRecord(@Param("record") ShopScoreExchange shopScoreExchange); public ShopScoreExchange selectById(Integer id); public ShopScoreExchange selectForUpdate(Integer id); }