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.ShopScoreRecord; /** * @description 用户积分获取记录 * @author jyy * @date 2019-08-09 15:10 */ public interface ShopScoreRecordDao{ public int insert(@Param("item") ShopScoreRecord shopScoreRecord); public int batchInsert(@Param("list") List shopScoreRecordList); public int updateByMap(Map modifyMap); public int updateByModel(@Param("record") ShopScoreRecord shopScoreRecord); public int deleteByIds(@Param("list") List list); public int deleteById(Integer id); public int deleteByModel(@Param("record") ShopScoreRecord shopScoreRecord); public List selectInPage(@Param("record") ShopScoreRecord shopScoreRecord, @Param("pageVo") PaginationVO pageVo); public List selectByModel(@Param("record") ShopScoreRecord shopScoreRecord); public int selectTotalRecord(@Param("record") ShopScoreRecord shopScoreRecord); public ShopScoreRecord selectById(Integer id); public ShopScoreRecord selectForUpdate(Integer id); }