| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- 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<MtPersonInf, String, MtPersonInfExample> {
- /**
- * 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<MtPersonInf> 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);
- }
|