| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- package com.minpay.db.table.mapper;
- import com.minpay.db.table.model.PubBaseDcntz;
- import com.minpay.db.table.model.PubBaseDcntzExample;
- import java.util.List;
- import com.startup.minpay.frame.jdbc.IMINMybatisEntityMapper;
- import org.apache.ibatis.annotations.Param;
- public interface PubBaseDcntzMapper extends IMINMybatisEntityMapper<PubBaseDcntz, String, PubBaseDcntzExample> {
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table pub_base_dcntz
- *
- * @mbg.generated
- * @return
- */
- int countByExample(PubBaseDcntzExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table pub_base_dcntz
- *
- * @mbg.generated
- */
- int deleteByExample(PubBaseDcntzExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table pub_base_dcntz
- *
- * @mbg.generated
- */
- int insert(PubBaseDcntz record);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table pub_base_dcntz
- *
- * @mbg.generated
- */
- int insertSelective(PubBaseDcntz record);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table pub_base_dcntz
- *
- * @mbg.generated
- */
- List<PubBaseDcntz> selectByExample(PubBaseDcntzExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table pub_base_dcntz
- *
- * @mbg.generated
- */
- int updateByExampleSelective(@Param("record") PubBaseDcntz record, @Param("example") PubBaseDcntzExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table pub_base_dcntz
- *
- * @mbg.generated
- */
- int updateByExample(@Param("record") PubBaseDcntz record, @Param("example") PubBaseDcntzExample example);
- }
|