| package com.matrix.system.shopXcx.dao; | 
|   | 
| import com.matrix.core.pojo.PaginationVO; | 
| import com.matrix.system.shopXcx.bean.ShopAdvertis; | 
| import org.apache.ibatis.annotations.Param; | 
|   | 
| import java.util.List; | 
| import java.util.Map; | 
|   | 
| /** | 
|  * @description 广告表 | 
|  * @author jyy | 
|  * @date 2019-06-05 10:15 | 
|  */ | 
| public interface ShopAdvertisDao{ | 
|   | 
|     public int insert(@Param("item") ShopAdvertis shopAdvertis); | 
|         | 
|        public int batchInsert(@Param("list") List<ShopAdvertis> shopAdvertisList); | 
|         | 
|     public int updateByMap(Map<String, Object> modifyMap); | 
|      | 
|     public int updateByModel(@Param("record") ShopAdvertis shopAdvertis); | 
|      | 
|     public int deleteByIds(@Param("list") List<String> list); | 
|      | 
|     public int deleteById(Integer id); | 
|   | 
|     public int deleteByModel(@Param("record") ShopAdvertis shopAdvertis); | 
|      | 
|     public List<ShopAdvertis> selectInPage(@Param("record") ShopAdvertis shopAdvertis, @Param("pageVo") PaginationVO pageVo); | 
|   | 
|     public List<ShopAdvertis> selectByModel(@Param("record") ShopAdvertis shopAdvertis); | 
|      | 
|     public int selectTotalRecord(@Param("record") ShopAdvertis shopAdvertis); | 
|      | 
|     public ShopAdvertis  selectById(Integer id); | 
|      | 
|     public ShopAdvertis  selectForUpdate(Integer id); | 
|   | 
|     List<ShopAdvertis>  selectListByType(@Param("type") String type, @Param("capacity") Integer capacity); | 
|   | 
|     List<ShopAdvertis>  selectListByTypeId(@Param("adtId") Integer adtId, @Param("capacity") Integer capacity); | 
|   | 
| } |