TgFqtgMapper.java 850 B

123456789101112131415161718192021222324252627282930
  1. package com.ghsc.partybuild.mapper;
  2. import com.ghsc.partybuild.model.TgFqtg;
  3. import com.ghsc.partybuild.model.TgFqtgExample;
  4. import java.util.List;
  5. import org.apache.ibatis.annotations.Param;
  6. public interface TgFqtgMapper {
  7. long countByExample(TgFqtgExample example);
  8. int deleteByExample(TgFqtgExample example);
  9. int deleteByPrimaryKey(String fqtgid);
  10. int insert(TgFqtg record);
  11. int insertSelective(TgFqtg record);
  12. List<TgFqtg> selectByExample(TgFqtgExample example);
  13. TgFqtg selectByPrimaryKey(String fqtgid);
  14. int updateByExampleSelective(@Param("record") TgFqtg record, @Param("example") TgFqtgExample example);
  15. int updateByExample(@Param("record") TgFqtg record, @Param("example") TgFqtgExample example);
  16. int updateByPrimaryKeySelective(TgFqtg record);
  17. int updateByPrimaryKey(TgFqtg record);
  18. }