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