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