Interface RegexrenameMapper

All Superinterfaces:
BaseInterface

public interface RegexrenameMapper extends BaseInterface
  • Method Details

    • countByExample

      long countByExample(RegexrenameCriteria example)
    • deleteByExample

      int deleteByExample(RegexrenameCriteria example)
    • deleteByPrimaryKey

      @Delete({"delete from REGEXRENAME","where CUST_ID = #{id,jdbcType=INTEGER}"}) int deleteByPrimaryKey(Integer id)
    • insert

      @Insert({"insert into REGEXRENAME (CUST_ID, CUST_NAME, ","CUST_ADDRESS, ZIP_CODE)","values (#{id,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, ","#{address,jdbcType=VARCHAR}, #{zipCode,jdbcType=CHAR})"}) @SelectKey(statement="call next value for TestSequence", keyProperty="id", before=true, resultType=java.lang.Integer.class) int insert(Regexrename row)
    • insertSelective

      int insertSelective(Regexrename row)
    • selectByExample

      List<Regexrename> selectByExample(RegexrenameCriteria example)
    • selectByPrimaryKey

      @Select({"select","CUST_ID, CUST_NAME, CUST_ADDRESS, ZIP_CODE","from REGEXRENAME","where CUST_ID = #{id,jdbcType=INTEGER}"}) @ResultMap("mbg.test.mb3.generated.mixed.miscellaneous.mapper.RegexrenameMapper.BaseResultMap") Regexrename selectByPrimaryKey(Integer id)
    • updateByExampleSelective

      int updateByExampleSelective(@Param("row") Regexrename row, @Param("example") RegexrenameCriteria example)
    • updateByExample

      int updateByExample(@Param("row") Regexrename row, @Param("example") RegexrenameCriteria example)
    • updateByPrimaryKeySelective

      int updateByPrimaryKeySelective(Regexrename row)
    • updateByPrimaryKey

      @Update({"update REGEXRENAME","set CUST_NAME = #{name,jdbcType=VARCHAR},","CUST_ADDRESS = #{address,jdbcType=VARCHAR},","ZIP_CODE = #{zipCode,jdbcType=CHAR}","where CUST_ID = #{id,jdbcType=INTEGER}"}) int updateByPrimaryKey(Regexrename row)