TgZgtgMapper.java 850 B

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