替换函数部分

dev
zhoushen 9 months ago
parent 0d08267121
commit 4c359f53b9

@ -5,32 +5,108 @@ import com.macro.mall.model.CmsPrefrenceAreaExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
/**
* CmsPrefrenceAreaMapper CmsPrefrenceArea
*/
public interface CmsPrefrenceAreaMapper {
/**
*
* @param example
* @return
*/
long countByExample(CmsPrefrenceAreaExample example);
/**
*
* @param example
* @return
*/
int deleteByExample(CmsPrefrenceAreaExample example);
/**
*
* @param id ID
* @return
*/
int deleteByPrimaryKey(Long id);
/**
*
* @param record
* @return
*/
int insert(CmsPrefrenceArea record);
/**
* null
* @param record
* @return
*/
int insertSelective(CmsPrefrenceArea record);
/**
* BLOB
* @param example
* @return BLOB
*/
List<CmsPrefrenceArea> selectByExampleWithBLOBs(CmsPrefrenceAreaExample example);
/**
* BLOB
* @param example
* @return BLOB
*/
List<CmsPrefrenceArea> selectByExample(CmsPrefrenceAreaExample example);
/**
*
* @param id ID
* @return
*/
CmsPrefrenceArea selectByPrimaryKey(Long id);
/**
* null
* @param record
* @param example
* @return
*/
int updateByExampleSelective(@Param("record") CmsPrefrenceArea record, @Param("example") CmsPrefrenceAreaExample example);
/**
* BLOB
* @param record
* @param example
* @return
*/
int updateByExampleWithBLOBs(@Param("record") CmsPrefrenceArea record, @Param("example") CmsPrefrenceAreaExample example);
/**
*
* @param record
* @param example
* @return
*/
int updateByExample(@Param("record") CmsPrefrenceArea record, @Param("example") CmsPrefrenceAreaExample example);
/**
* null
* @param record
* @return
*/
int updateByPrimaryKeySelective(CmsPrefrenceArea record);
/**
* BLOB
* @param record
* @return
*/
int updateByPrimaryKeyWithBLOBs(CmsPrefrenceArea record);
/**
*
* @param record
* @return
*/
int updateByPrimaryKey(CmsPrefrenceArea record);
}
Loading…
Cancel
Save