package com.jsh.erp.datasource.mappers; import com.jsh.erp.datasource.entities.Person; import com.jsh.erp.datasource.entities.PersonExample; import java.util.List; import org.apache.ibatis.annotations.Param; public interface PersonMapper { long countByExample(PersonExample example); int deleteByExample(PersonExample example); int deleteByPrimaryKey(Long id); int insert(Person record); int insertSelective(Person record); List selectByExample(PersonExample example); Person selectByPrimaryKey(Long id); int updateByExampleSelective(@Param("record") Person record, @Param("example") PersonExample example); int updateByExample(@Param("record") Person record, @Param("example") PersonExample example); int updateByPrimaryKeySelective(Person record); int updateByPrimaryKey(Person record); }