| 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.ShopParamValue; | 
|   | 
| /** | 
|  * @description 商品参数值表 | 
|  * @author pengliang | 
|  * @date 2019-06-05 17:27 | 
|  */ | 
| public interface ShopParamValueDao{ | 
|   | 
|     public int insert(@Param("item") ShopParamValue shopParamValue); | 
|         | 
|        public int batchInsert(@Param("list") List<ShopParamValue> shopParamValueList); | 
|         | 
|     public int updateByMap(Map<String, Object> modifyMap); | 
|      | 
|     public int updateByModel(@Param("record") ShopParamValue shopParamValue); | 
|      | 
|     public int deleteByIds(@Param("list") List<String> list); | 
|      | 
|     public int deleteById(Integer valueId); | 
|   | 
|     public int deleteByModel(@Param("record") ShopParamValue shopParamValue); | 
|      | 
|     public List<ShopParamValue> selectInPage(@Param("record") ShopParamValue shopParamValue, @Param("pageVo") PaginationVO pageVo); | 
|   | 
|     public List<ShopParamValue> selectByModel(@Param("record") ShopParamValue shopParamValue); | 
|   | 
|     public List<ShopParamValue> selectByParamValues(@Param("paramId")Integer paramId,@Param("paramValue") String paramValue); | 
|      | 
|     public int selectTotalRecord(@Param("record") ShopParamValue shopParamValue); | 
|      | 
|     public ShopParamValue  selectById(Integer valueId); | 
|      | 
|     public ShopParamValue  selectForUpdate(Integer valueId); | 
|   | 
|     public List<ShopParamValue> selectByParamId(Integer paramId); | 
|      | 
| } |