| 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.ShopProductParamRef; | 
|   | 
| /** | 
|  * @description 产品参数关联表 | 
|  * @author jyy | 
|  * @date 2019-06-10 10:58 | 
|  */ | 
| public interface ShopProductParamRefDao{ | 
|   | 
|     public int insert(@Param("item") ShopProductParamRef shopProductParamRef); | 
|         | 
|        public int batchInsert(@Param("list") List<ShopProductParamRef> shopProductParamRefList); | 
|         | 
|     public int updateByMap(Map<String, Object> modifyMap); | 
|      | 
|     public int updateByModel(@Param("record") ShopProductParamRef shopProductParamRef); | 
|      | 
|     public int deleteByIds(@Param("list") List<String> list); | 
|      | 
|     public int deleteById(Integer id); | 
|   | 
|     public int deleteByModel(@Param("record") ShopProductParamRef shopProductParamRef); | 
|      | 
|     public List<ShopProductParamRef> selectInPage(@Param("record") ShopProductParamRef shopProductParamRef, @Param("pageVo") PaginationVO pageVo); | 
|   | 
|     public List<ShopProductParamRef> selectByModel(@Param("record") ShopProductParamRef shopProductParamRef); | 
|      | 
|     public int selectTotalRecord(@Param("record") ShopProductParamRef shopProductParamRef); | 
|      | 
|     public ShopProductParamRef  selectById(Integer id); | 
|      | 
|     public ShopProductParamRef  selectForUpdate(Integer id); | 
|   | 
|     public List<ShopProductParamRef> selectByPid(Integer pid); | 
|      | 
| } |