Files
mall-swarm/mall-mbg/src/main/java/com/macro/mall/mapper/CmsPrefrenceAreaMapper.java
2018-04-13 13:50:33 +08:00

36 lines
1.2 KiB
Java

package com.macro.mall.mapper;
import com.macro.mall.model.CmsPrefrenceArea;
import com.macro.mall.model.CmsPrefrenceAreaExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface CmsPrefrenceAreaMapper {
int countByExample(CmsPrefrenceAreaExample example);
int deleteByExample(CmsPrefrenceAreaExample example);
int deleteByPrimaryKey(Long id);
int insert(CmsPrefrenceArea record);
int insertSelective(CmsPrefrenceArea record);
List<CmsPrefrenceArea> selectByExampleWithBLOBs(CmsPrefrenceAreaExample example);
List<CmsPrefrenceArea> selectByExample(CmsPrefrenceAreaExample example);
CmsPrefrenceArea selectByPrimaryKey(Long id);
int updateByExampleSelective(@Param("record") CmsPrefrenceArea record, @Param("example") CmsPrefrenceAreaExample example);
int updateByExampleWithBLOBs(@Param("record") CmsPrefrenceArea record, @Param("example") CmsPrefrenceAreaExample example);
int updateByExample(@Param("record") CmsPrefrenceArea record, @Param("example") CmsPrefrenceAreaExample example);
int updateByPrimaryKeySelective(CmsPrefrenceArea record);
int updateByPrimaryKeyWithBLOBs(CmsPrefrenceArea record);
int updateByPrimaryKey(CmsPrefrenceArea record);
}