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.ShopAdvertisType; /** * @description 广告分类表 * @author jiangyouyao * @date 2019-06-05 11:02 */ public interface ShopAdvertisTypeDao{ public int insert(@Param("item") ShopAdvertisType shopAdvertisType); public int batchInsert(@Param("list") List shopAdvertisTypeList); public int updateByMap(Map modifyMap); public int updateByModel(@Param("record") ShopAdvertisType shopAdvertisType); public int deleteByIds(@Param("list") List list); public int deleteById(Integer adtId); public int deleteByModel(@Param("record") ShopAdvertisType shopAdvertisType); public List selectInPage(@Param("record") ShopAdvertisType shopAdvertisType, @Param("pageVo") PaginationVO pageVo); public List selectByModel(@Param("record") ShopAdvertisType shopAdvertisType); public int selectTotalRecord(@Param("record") ShopAdvertisType shopAdvertisType); public ShopAdvertisType selectById(Integer adtId); public ShopAdvertisType selectForUpdate(Integer adtId); }