123456789101112131415161718192021222324252627282930 |
- 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<TgFqtg> 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);
- }
|