Interface EnumtestMapper

All Superinterfaces:
BaseInterface

public interface EnumtestMapper extends BaseInterface
  • Method Details

    • countByExample

      @SelectProvider(type=EnumtestSqlProvider.class, method="countByExample") long countByExample(EnumtestCriteria example)
      This method was generated by MyBatis Generator. This method corresponds to the database table ENUMTEST
    • deleteByExample

      @DeleteProvider(type=EnumtestSqlProvider.class, method="deleteByExample") int deleteByExample(EnumtestCriteria example)
      This method was generated by MyBatis Generator. This method corresponds to the database table ENUMTEST
    • deleteByPrimaryKey

      @Delete({"delete from ENUMTEST","where ID = #{id,jdbcType=INTEGER}"}) int deleteByPrimaryKey(Integer id)
      This method was generated by MyBatis Generator. This method corresponds to the database table ENUMTEST
    • insert

      @Insert({"insert into ENUMTEST (ID, NAME)","values (#{id,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR})"}) int insert(Enumtest row)
      This method was generated by MyBatis Generator. This method corresponds to the database table ENUMTEST
    • insertSelective

      @InsertProvider(type=EnumtestSqlProvider.class, method="insertSelective") int insertSelective(Enumtest row)
      This method was generated by MyBatis Generator. This method corresponds to the database table ENUMTEST
    • selectByExample

      @SelectProvider(type=EnumtestSqlProvider.class, method="selectByExample") @Result(column="ID",property="id",jdbcType=INTEGER,id=true) @Result(column="NAME",property="name",jdbcType=VARCHAR) List<Enumtest> selectByExample(EnumtestCriteria example)
      This method was generated by MyBatis Generator. This method corresponds to the database table ENUMTEST
    • selectByPrimaryKey

      @Select({"select","ID, NAME","from ENUMTEST","where ID = #{id,jdbcType=INTEGER}"}) @Result(column="ID",property="id",jdbcType=INTEGER,id=true) @Result(column="NAME",property="name",jdbcType=VARCHAR) Enumtest selectByPrimaryKey(Integer id)
      This method was generated by MyBatis Generator. This method corresponds to the database table ENUMTEST
    • updateByExampleSelective

      @UpdateProvider(type=EnumtestSqlProvider.class, method="updateByExampleSelective") int updateByExampleSelective(@Param("row") Enumtest row, @Param("example") EnumtestCriteria example)
      This method was generated by MyBatis Generator. This method corresponds to the database table ENUMTEST
    • updateByExample

      @UpdateProvider(type=EnumtestSqlProvider.class, method="updateByExample") int updateByExample(@Param("row") Enumtest row, @Param("example") EnumtestCriteria example)
      This method was generated by MyBatis Generator. This method corresponds to the database table ENUMTEST
    • updateByPrimaryKeySelective

      @UpdateProvider(type=EnumtestSqlProvider.class, method="updateByPrimaryKeySelective") int updateByPrimaryKeySelective(Enumtest row)
      This method was generated by MyBatis Generator. This method corresponds to the database table ENUMTEST
    • updateByPrimaryKey

      @Update({"update ENUMTEST","set NAME = #{name,jdbcType=VARCHAR}","where ID = #{id,jdbcType=INTEGER}"}) int updateByPrimaryKey(Enumtest row)
      This method was generated by MyBatis Generator. This method corresponds to the database table ENUMTEST