Interface PkblobsMapper
public interface PkblobsMapper
-
Method Summary
Modifier and TypeMethodDescriptionintThis method was generated by MyBatis Generator.intThis method was generated by MyBatis Generator.This method was generated by MyBatis Generator.This method was generated by MyBatis Generator.intThis method was generated by MyBatis Generator.
-
Method Details
-
deleteByPrimaryKey
@Delete({"delete from PKBLOBS","where ID = #{id,jdbcType=INTEGER}"}) int deleteByPrimaryKey(Integer id) This method was generated by MyBatis Generator. This method corresponds to the database table PKBLOBS -
insert
@Insert({"insert into PKBLOBS (ID, BLOB1, ","BLOB2, CHARACTERLOB)","values (#{id,jdbcType=INTEGER}, #{blob1,jdbcType=VARBINARY}, ","#{blob2,jdbcType=VARBINARY}, #{characterlob,jdbcType=CLOB})"}) int insert(Pkblobs row) This method was generated by MyBatis Generator. This method corresponds to the database table PKBLOBS -
selectByPrimaryKey
@Select({"select","ID, BLOB1, BLOB2, CHARACTERLOB","from PKBLOBS","where ID = #{id,jdbcType=INTEGER}"}) @Result(column="ID",property="id",jdbcType=INTEGER,id=true) @Result(column="BLOB1",property="blob1",jdbcType=VARBINARY) @Result(column="BLOB2",property="blob2",jdbcType=VARBINARY) @Result(column="CHARACTERLOB",property="characterlob",jdbcType=CLOB) Pkblobs selectByPrimaryKey(Integer id) This method was generated by MyBatis Generator. This method corresponds to the database table PKBLOBS -
selectAll
@Select({"select","ID, BLOB1, BLOB2, CHARACTERLOB","from PKBLOBS"}) @Result(column="ID",property="id",jdbcType=INTEGER,id=true) @Result(column="BLOB1",property="blob1",jdbcType=VARBINARY) @Result(column="BLOB2",property="blob2",jdbcType=VARBINARY) @Result(column="CHARACTERLOB",property="characterlob",jdbcType=CLOB) List<Pkblobs> selectAll()This method was generated by MyBatis Generator. This method corresponds to the database table PKBLOBS -
updateByPrimaryKey
@Update({"update PKBLOBS","set BLOB1 = #{blob1,jdbcType=VARBINARY},","BLOB2 = #{blob2,jdbcType=VARBINARY},","CHARACTERLOB = #{characterlob,jdbcType=CLOB}","where ID = #{id,jdbcType=INTEGER}"}) int updateByPrimaryKey(Pkblobs row) This method was generated by MyBatis Generator. This method corresponds to the database table PKBLOBS
-