Interface PkonlyMapper
public interface PkonlyMapper
-
Method Summary
Modifier and TypeMethodDescriptionlongcountByExample(PkonlyExample example) This method was generated by MyBatis Generator.intdeleteByExample(PkonlyExample example) This method was generated by MyBatis Generator.intdeleteByPrimaryKey(Integer id, Integer seqNum) This method was generated by MyBatis Generator.intThis method was generated by MyBatis Generator.intinsertSelective(Pkonly row) This method was generated by MyBatis Generator.selectByExample(PkonlyExample example) This method was generated by MyBatis Generator.selectByExampleWithRowbounds(PkonlyExample example, org.apache.ibatis.session.RowBounds rowBounds) This method was generated by MyBatis Generator.intupdateByExample(Pkonly row, PkonlyExample example) This method was generated by MyBatis Generator.intupdateByExampleSelective(Pkonly row, PkonlyExample example) This method was generated by MyBatis Generator.
-
Method Details
-
countByExample
@SelectProvider(type=PkonlySqlProvider.class, method="countByExample") long countByExample(PkonlyExample example) This method was generated by MyBatis Generator. This method corresponds to the database table PKONLY -
deleteByExample
@DeleteProvider(type=PkonlySqlProvider.class, method="deleteByExample") int deleteByExample(PkonlyExample example) This method was generated by MyBatis Generator. This method corresponds to the database table PKONLY -
deleteByPrimaryKey
@Delete({"delete from PKONLY","where ID = #{id,jdbcType=INTEGER}","and SEQ_NUM = #{seqNum,jdbcType=INTEGER}"}) int deleteByPrimaryKey(@Param("id") Integer id, @Param("seqNum") Integer seqNum) This method was generated by MyBatis Generator. This method corresponds to the database table PKONLY -
insert
@Insert({"insert into PKONLY (ID, SEQ_NUM)","values (#{id,jdbcType=INTEGER}, #{seqNum,jdbcType=INTEGER})"}) int insert(Pkonly row) This method was generated by MyBatis Generator. This method corresponds to the database table PKONLY -
insertSelective
@InsertProvider(type=PkonlySqlProvider.class, method="insertSelective") int insertSelective(Pkonly row) This method was generated by MyBatis Generator. This method corresponds to the database table PKONLY -
selectByExampleWithRowbounds
@SelectProvider(type=PkonlySqlProvider.class, method="selectByExample") @Result(column="ID",property="id",jdbcType=INTEGER,id=true) @Result(column="SEQ_NUM",property="seqNum",jdbcType=INTEGER,id=true) List<Pkonly> selectByExampleWithRowbounds(PkonlyExample example, org.apache.ibatis.session.RowBounds rowBounds) This method was generated by MyBatis Generator. This method corresponds to the database table PKONLY -
selectByExample
@SelectProvider(type=PkonlySqlProvider.class, method="selectByExample") @Result(column="ID",property="id",jdbcType=INTEGER,id=true) @Result(column="SEQ_NUM",property="seqNum",jdbcType=INTEGER,id=true) List<Pkonly> selectByExample(PkonlyExample example) This method was generated by MyBatis Generator. This method corresponds to the database table PKONLY -
updateByExampleSelective
@UpdateProvider(type=PkonlySqlProvider.class, method="updateByExampleSelective") int updateByExampleSelective(@Param("row") Pkonly row, @Param("example") PkonlyExample example) This method was generated by MyBatis Generator. This method corresponds to the database table PKONLY -
updateByExample
@UpdateProvider(type=PkonlySqlProvider.class, method="updateByExample") int updateByExample(@Param("row") Pkonly row, @Param("example") PkonlyExample example) This method was generated by MyBatis Generator. This method corresponds to the database table PKONLY
-