SyFeatureMapper.java
876 Bytes
package com.objecteye.mapper;
import com.objecteye.entity.SyFeature;
import com.objecteye.entity.SyFeatureExample;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface SyFeatureMapper {
int countByExample(SyFeatureExample example);
int deleteByExample(SyFeatureExample example);
int deleteByPrimaryKey(Integer id);
int insert(SyFeature record);
int insertSelective(SyFeature record);
List<SyFeature> selectByExample(SyFeatureExample example);
SyFeature selectByPrimaryKey(Integer id);
int updateByExampleSelective(@Param("record") SyFeature record, @Param("example") SyFeatureExample example);
int updateByExample(@Param("record") SyFeature record, @Param("example") SyFeatureExample example);
int updateByPrimaryKeySelective(SyFeature record);
int updateByPrimaryKey(SyFeature record);
}