替换函数部分

dev
zhoushen 9 months ago
parent 099cd0e2e1
commit 81b27e7a0b

@ -0,0 +1,90 @@
package com.macro.mall.mapper;
import com.macro.mall.model.CmsHelpCategory;
import com.macro.mall.model.CmsHelpCategoryExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
/**
* CmsHelpCategoryMapper CmsHelpCategory
*/
public interface CmsHelpCategoryMapper {
/**
*
* @param example
* @return
*/
long countByExample(CmsHelpCategoryExample example);
/**
*
* @param example
* @return
*/
int deleteByExample(CmsHelpCategoryExample example);
/**
*
* @param id ID
* @return
*/
int deleteByPrimaryKey(Long id);
/**
*
* @param record
* @return
*/
int insert(CmsHelpCategory record);
/**
* null
* @param record
* @return
*/
int insertSelective(CmsHelpCategory record);
/**
*
* @param example
* @return
*/
List<CmsHelpCategory> selectByExample(CmsHelpCategoryExample example);
/**
*
* @param id ID
* @return
*/
CmsHelpCategory selectByPrimaryKey(Long id);
/**
* null
* @param record
* @param example
* @return
*/
int updateByExampleSelective(@Param("record") CmsHelpCategory record, @Param("example") CmsHelpCategoryExample example);
/**
*
* @param record
* @param example
* @return
*/
int updateByExample(@Param("record") CmsHelpCategory record, @Param("example") CmsHelpCategoryExample example);
/**
* null
* @param record
* @return
*/
int updateByPrimaryKeySelective(CmsHelpCategory record);
/**
*
* @param record
* @return
*/
int updateByPrimaryKey(CmsHelpCategory record);
}
Loading…
Cancel
Save