public interface PkblobsMapper
Modifier and Type | Method and Description |
---|---|
int |
deleteByPrimaryKey(Integer id)
This method was generated by MyBatis Generator.
|
int |
insert(Pkblobs row)
This method was generated by MyBatis Generator.
|
List<Pkblobs> |
selectAll()
This method was generated by MyBatis Generator.
|
Pkblobs |
selectByPrimaryKey(Integer id)
This method was generated by MyBatis Generator.
|
int |
updateByPrimaryKey(Pkblobs row)
This method was generated by MyBatis Generator.
|
@Delete(value={"delete from PKBLOBS","where ID = #{id,jdbcType=INTEGER}"}) int deleteByPrimaryKey(Integer id)
@Insert(value={"insert into PKBLOBS (ID, BLOB1, ","BLOB2, CHARACTERLOB)","values (#{id,jdbcType=INTEGER}, #{blob1,jdbcType=VARBINARY}, ","#{blob2,jdbcType=VARBINARY}, #{characterlob,jdbcType=CLOB})"}) int insert(Pkblobs row)
@Select(value={"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)
@Select(value={"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()
@Update(value={"update PKBLOBS","set BLOB1 = #{blob1,jdbcType=VARBINARY},","BLOB2 = #{blob2,jdbcType=VARBINARY},","CHARACTERLOB = #{characterlob,jdbcType=CLOB}","where ID = #{id,jdbcType=INTEGER}"}) int updateByPrimaryKey(Pkblobs row)
Copyright © 2006–2023 MyBatis.org. All rights reserved.