123456789101112131415161718192021222324252627282930 |
- package com.ghsc.partybuild.mapper;
- import com.ghsc.partybuild.model.PubDzzfc;
- import com.ghsc.partybuild.model.PubDzzfcExample;
- import java.util.List;
- import org.apache.ibatis.annotations.Param;
- public interface PubDzzfcMapper {
- long countByExample(PubDzzfcExample example);
- int deleteByExample(PubDzzfcExample example);
- int deleteByPrimaryKey(String id);
- int insert(PubDzzfc record);
- int insertSelective(PubDzzfc record);
- List<PubDzzfc> selectByExample(PubDzzfcExample example);
- PubDzzfc selectByPrimaryKey(String id);
- int updateByExampleSelective(@Param("record") PubDzzfc record, @Param("example") PubDzzfcExample example);
- int updateByExample(@Param("record") PubDzzfc record, @Param("example") PubDzzfcExample example);
- int updateByPrimaryKeySelective(PubDzzfc record);
- int updateByPrimaryKey(PubDzzfc record);
- }
|