36 lines
1.2 KiB
Java
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);
|
|
} |