| 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.ShopActivitiesGroupPrice; | 
|   | 
| /** | 
|  * @description 价格 | 
|  * @author wzy | 
|  * @date 2020-03-21 15:26 | 
|  */ | 
| public interface ShopActivitiesGroupPriceDao{ | 
|   | 
|     public int insert(@Param("item") ShopActivitiesGroupPrice shopActivitiesGroupPrice); | 
|         | 
|        public int batchInsert(@Param("list") List<ShopActivitiesGroupPrice> shopActivitiesGroupPriceList); | 
|         | 
|     public int updateByMap(Map<String, Object> modifyMap); | 
|      | 
|     public int updateByModel(@Param("record") ShopActivitiesGroupPrice shopActivitiesGroupPrice); | 
|      | 
|     public int deleteByIds(@Param("list") List<String> list); | 
|      | 
|     public int deleteById(Long id); | 
|   | 
|     public int deleteByModel(@Param("record") ShopActivitiesGroupPrice shopActivitiesGroupPrice); | 
|      | 
|     public List<ShopActivitiesGroupPrice> selectInPage(@Param("record") ShopActivitiesGroupPrice shopActivitiesGroupPrice, @Param("pageVo") PaginationVO pageVo); | 
|   | 
|     public List<ShopActivitiesGroupPrice> selectByModel(@Param("record") ShopActivitiesGroupPrice shopActivitiesGroupPrice); | 
|      | 
|     public int selectTotalRecord(@Param("record") ShopActivitiesGroupPrice shopActivitiesGroupPrice); | 
|      | 
|     public ShopActivitiesGroupPrice  selectById(Long id); | 
|      | 
|     public ShopActivitiesGroupPrice  selectForUpdate(Long id); | 
|   | 
|     public List<ShopActivitiesGroupPrice> selectGroupPriceByActId(@Param("actId") Long actId); | 
|   | 
|     public int deleteByActId(@Param("actId") Long actId); | 
| } |