Interface PkfieldsMapper
public interface PkfieldsMapper
-
Method Summary
Modifier and TypeMethodDescriptionlongcountByExample(PkfieldsExample example) This method was generated by MyBatis Generator.intdeleteByExample(PkfieldsExample example) This method was generated by MyBatis Generator.intdeleteByPrimaryKey(Integer id2, Integer id1) This method was generated by MyBatis Generator.intThis method was generated by MyBatis Generator.intinsertSelective(Pkfields row) This method was generated by MyBatis Generator.selectByExample(PkfieldsExample example) This method was generated by MyBatis Generator.selectByExampleWithRowbounds(PkfieldsExample example, org.apache.ibatis.session.RowBounds rowBounds) This method was generated by MyBatis Generator.selectByPrimaryKey(Integer id2, Integer id1) This method was generated by MyBatis Generator.intupdateByExample(Pkfields row, PkfieldsExample example) This method was generated by MyBatis Generator.intupdateByExampleSelective(Pkfields row, PkfieldsExample example) This method was generated by MyBatis Generator.intThis method was generated by MyBatis Generator.intThis method was generated by MyBatis Generator.
-
Method Details
-
countByExample
This method was generated by MyBatis Generator. This method corresponds to the database table PKFIELDS -
deleteByExample
This method was generated by MyBatis Generator. This method corresponds to the database table PKFIELDS -
deleteByPrimaryKey
@Delete({"delete from PKFIELDS","where ID2 = #{id2,jdbcType=INTEGER}","and ID1 = #{id1,jdbcType=INTEGER}"}) int deleteByPrimaryKey(@Param("id2") Integer id2, @Param("id1") Integer id1) This method was generated by MyBatis Generator. This method corresponds to the database table PKFIELDS -
insert
@Insert({"insert into PKFIELDS (ID2, ID1, ","FIRSTNAME, LASTNAME, ","DATEFIELD, TIMEFIELD, ","TIMESTAMPFIELD, DECIMAL30FIELD, ","DECIMAL60FIELD, DECIMAL100FIELD, ","DECIMAL155FIELD, \"wierd$Field\", ","\"birth date\", STRINGBOOLEAN)","values (#{id2,jdbcType=INTEGER}, #{id1,jdbcType=INTEGER}, ","#{firstname,jdbcType=VARCHAR}, #{lastname,jdbcType=VARCHAR}, ","#{datefield,jdbcType=DATE}, #{timefield,jdbcType=TIME}, ","#{timestampfield,jdbcType=TIMESTAMP}, #{decimal30field,jdbcType=DECIMAL}, ","#{decimal60field,jdbcType=DECIMAL}, #{decimal100field,jdbcType=DECIMAL}, ","#{decimal155field,jdbcType=DECIMAL}, #{wierdField,jdbcType=INTEGER}, ","#{birthDate,jdbcType=DATE}, #{stringboolean,jdbcType=CHAR})"}) int insert(Pkfields row) This method was generated by MyBatis Generator. This method corresponds to the database table PKFIELDS -
insertSelective
This method was generated by MyBatis Generator. This method corresponds to the database table PKFIELDS -
selectByExampleWithRowbounds
List<Pkfields> selectByExampleWithRowbounds(PkfieldsExample example, org.apache.ibatis.session.RowBounds rowBounds) This method was generated by MyBatis Generator. This method corresponds to the database table PKFIELDS -
selectByExample
This method was generated by MyBatis Generator. This method corresponds to the database table PKFIELDS -
selectByPrimaryKey
@Select({"select","B.ID2 as B_ID2, B.ID1 as B_ID1, B.FIRSTNAME as B_FIRSTNAME, B.LASTNAME as B_LASTNAME, ","B.DATEFIELD as B_DATEFIELD, B.TIMEFIELD as B_TIMEFIELD, B.TIMESTAMPFIELD as B_TIMESTAMPFIELD, ","B.DECIMAL30FIELD as B_DECIMAL30FIELD, B.DECIMAL60FIELD as B_DECIMAL60FIELD, ","B.DECIMAL100FIELD as B_DECIMAL100FIELD, B.DECIMAL155FIELD as B_DECIMAL155FIELD, ","B.\"wierd$Field\" as \"B_wierd$Field\", B.\"birth date\" as \"B_birth date\", ","B.STRINGBOOLEAN as B_STRINGBOOLEAN","from PKFIELDS B","where ID2 = #{id2,jdbcType=INTEGER}","and ID1 = #{id1,jdbcType=INTEGER}"}) @ResultMap("mbg.test.mb3.generated.mixed.flat.mapper.PkfieldsMapper.BaseResultMap") Pkfields selectByPrimaryKey(@Param("id2") Integer id2, @Param("id1") Integer id1) This method was generated by MyBatis Generator. This method corresponds to the database table PKFIELDS -
updateByExampleSelective
This method was generated by MyBatis Generator. This method corresponds to the database table PKFIELDS -
updateByExample
This method was generated by MyBatis Generator. This method corresponds to the database table PKFIELDS -
updateByPrimaryKeySelective
This method was generated by MyBatis Generator. This method corresponds to the database table PKFIELDS -
updateByPrimaryKey
@Update({"update PKFIELDS","set FIRSTNAME = #{firstname,jdbcType=VARCHAR},","LASTNAME = #{lastname,jdbcType=VARCHAR},","DATEFIELD = #{datefield,jdbcType=DATE},","TIMEFIELD = #{timefield,jdbcType=TIME},","TIMESTAMPFIELD = #{timestampfield,jdbcType=TIMESTAMP},","DECIMAL30FIELD = #{decimal30field,jdbcType=DECIMAL},","DECIMAL60FIELD = #{decimal60field,jdbcType=DECIMAL},","DECIMAL100FIELD = #{decimal100field,jdbcType=DECIMAL},","DECIMAL155FIELD = #{decimal155field,jdbcType=DECIMAL},","\"wierd$Field\" = #{wierdField,jdbcType=INTEGER},","\"birth date\" = #{birthDate,jdbcType=DATE},","STRINGBOOLEAN = #{stringboolean,jdbcType=CHAR}","where ID2 = #{id2,jdbcType=INTEGER}","and ID1 = #{id1,jdbcType=INTEGER}"}) int updateByPrimaryKey(Pkfields row) This method was generated by MyBatis Generator. This method corresponds to the database table PKFIELDS
-