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