| 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<ShopScoreExchange> shopScoreExchangeList); | 
|         | 
|     public int updateByMap(Map<String, Object> modifyMap); | 
|      | 
|     public int updateByModel(@Param("record") ShopScoreExchange shopScoreExchange); | 
|      | 
|     public int deleteByIds(@Param("list") List<String> list); | 
|      | 
|     public int deleteById(Integer id); | 
|   | 
|     public int deleteByModel(@Param("record") ShopScoreExchange shopScoreExchange); | 
|      | 
|     public List<ShopScoreExchange> selectInPage(@Param("record") ShopScoreExchange shopScoreExchange, @Param("pageVo") PaginationVO pageVo); | 
|   | 
|     public List<ShopScoreExchange> selectByModel(@Param("record") ShopScoreExchange shopScoreExchange); | 
|      | 
|     public int selectTotalRecord(@Param("record") ShopScoreExchange shopScoreExchange); | 
|      | 
|     public ShopScoreExchange  selectById(Integer id); | 
|      | 
|     public ShopScoreExchange  selectForUpdate(Integer id); | 
|      | 
| } |