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.ShopSearchRecord;
|
|
/**
|
* @description 会员搜索记录
|
* @author pengliang
|
* @date 2019-06-14 14:15
|
*/
|
public interface ShopSearchRecordDao{
|
|
public int insert(@Param("item") ShopSearchRecord shopSearchRecord);
|
|
public int batchInsert(@Param("list") List<ShopSearchRecord> shopSearchRecordList);
|
|
public int updateByMap(Map<String, Object> modifyMap);
|
|
public int updateByModel(@Param("record") ShopSearchRecord shopSearchRecord);
|
|
public int deleteByIds(@Param("list") List<String> list);
|
|
public int deleteById(Integer searchId);
|
|
public int deleteByModel(@Param("record") ShopSearchRecord shopSearchRecord);
|
|
public List<ShopSearchRecord> selectInPage(@Param("record") ShopSearchRecord shopSearchRecord, @Param("pageVo") PaginationVO pageVo);
|
|
public List<ShopSearchRecord> selectByModel(@Param("record") ShopSearchRecord shopSearchRecord);
|
|
public int selectTotalRecord(@Param("record") ShopSearchRecord shopSearchRecord);
|
|
public ShopSearchRecord selectById(Integer searchId);
|
|
public ShopSearchRecord selectForUpdate(Integer searchId);
|
|
public List<String> selectByUserId(String userId);
|
|
public int deleteByUserId(String userId);
|
|
}
|