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