package com.minpay.db.table.mapper; import com.minpay.db.table.model.MtPersonInf; import com.minpay.db.table.model.MtPersonInfExample; import com.startup.minpay.frame.jdbc.IMINMybatisEntityMapper; import java.util.List; import org.apache.ibatis.annotations.Param; public interface MtPersonInfMapper extends IMINMybatisEntityMapper { /** * This method was generated by MyBatis Generator. * This method corresponds to the database table mt_person_inf * * @mbggenerated */ int countByExample(MtPersonInfExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table mt_person_inf * * @mbggenerated */ int deleteByExample(MtPersonInfExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table mt_person_inf * * @mbggenerated */ int deleteByPrimaryKey(String id); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table mt_person_inf * * @mbggenerated */ int insert(MtPersonInf record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table mt_person_inf * * @mbggenerated */ int insertSelective(MtPersonInf record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table mt_person_inf * * @mbggenerated */ List selectByExample(MtPersonInfExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table mt_person_inf * * @mbggenerated */ MtPersonInf selectByPrimaryKey(String id); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table mt_person_inf * * @mbggenerated */ int updateByExampleSelective(@Param("record") MtPersonInf record, @Param("example") MtPersonInfExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table mt_person_inf * * @mbggenerated */ int updateByExample(@Param("record") MtPersonInf record, @Param("example") MtPersonInfExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table mt_person_inf * * @mbggenerated */ int updateByPrimaryKeySelective(MtPersonInf record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table mt_person_inf * * @mbggenerated */ int updateByPrimaryKey(MtPersonInf record); }