package com.ghsc.partybuild.mapper; import com.ghsc.partybuild.model.CkTemplate; import com.ghsc.partybuild.model.CkTemplateExample; import java.util.List; import org.apache.ibatis.annotations.Param; public interface CkTemplateMapper { long countByExample(CkTemplateExample example); int deleteByExample(CkTemplateExample example); int deleteByPrimaryKey(String templateid); int insert(CkTemplate record); int insertSelective(CkTemplate record); List selectByExample(CkTemplateExample example); CkTemplate selectByPrimaryKey(String templateid); int updateByExampleSelective(@Param("record") CkTemplate record, @Param("example") CkTemplateExample example); int updateByExample(@Param("record") CkTemplate record, @Param("example") CkTemplateExample example); int updateByPrimaryKeySelective(CkTemplate record); int updateByPrimaryKey(CkTemplate record); }