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<ShopAdvertisType> shopAdvertisTypeList);
|
|
public int updateByMap(Map<String, Object> modifyMap);
|
|
public int updateByModel(@Param("record") ShopAdvertisType shopAdvertisType);
|
|
public int deleteByIds(@Param("list") List<String> list);
|
|
public int deleteById(Integer adtId);
|
|
public int deleteByModel(@Param("record") ShopAdvertisType shopAdvertisType);
|
|
public List<ShopAdvertisType> selectInPage(@Param("record") ShopAdvertisType shopAdvertisType, @Param("pageVo") PaginationVO pageVo);
|
|
public List<ShopAdvertisType> selectByModel(@Param("record") ShopAdvertisType shopAdvertisType);
|
|
public int selectTotalRecord(@Param("record") ShopAdvertisType shopAdvertisType);
|
|
public ShopAdvertisType selectById(Integer adtId);
|
|
public ShopAdvertisType selectForUpdate(Integer adtId);
|
|
}
|