SyPersonnelMapper.java 908 Bytes
package com.objecteye.mapper;

import com.objecteye.entity.SyPersonnel;
import com.objecteye.entity.SyPersonnelExample;
import org.apache.ibatis.annotations.Param;

import java.util.List;

public interface SyPersonnelMapper {
    int countByExample(SyPersonnelExample example);

    int deleteByExample(SyPersonnelExample example);

    int deleteByPrimaryKey(Integer id);

    int insert(SyPersonnel record);

    int insertSelective(SyPersonnel record);

    List<SyPersonnel> selectByExample(SyPersonnelExample example);

    SyPersonnel selectByPrimaryKey(Integer id);

    int updateByExampleSelective(@Param("record") SyPersonnel record, @Param("example") SyPersonnelExample example);

    int updateByExample(@Param("record") SyPersonnel record, @Param("example") SyPersonnelExample example);

    int updateByPrimaryKeySelective(SyPersonnel record);

    int updateByPrimaryKey(SyPersonnel record);
}