Interface PkonlyMapper
public interface PkonlyMapper
-
Method Summary
-
Method Details
-
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 -
selectAll
@Select({"select","ID, SEQ_NUM","from PKONLY"}) @Result(column="ID",property="id",jdbcType=INTEGER,id=true) @Result(column="SEQ_NUM",property="seqNum",jdbcType=INTEGER,id=true) List<Pkonly> selectAll()This method was generated by MyBatis Generator. This method corresponds to the database table PKONLY
-