Interface FieldsonlyMapper
public interface FieldsonlyMapper
-
Method Summary
Modifier and TypeMethodDescriptionintinsert(Fieldsonly row) This method was generated by MyBatis Generator.This method was generated by MyBatis Generator.
-
Method Details
-
insert
@Insert({"insert into FIELDSONLY (INTEGERFIELD, DOUBLEFIELD, ","FLOATFIELD)","values (#{integerfield,jdbcType=INTEGER}, #{doublefield,jdbcType=DOUBLE}, ","#{floatfield,jdbcType=DOUBLE})"}) int insert(Fieldsonly row) This method was generated by MyBatis Generator. This method corresponds to the database table FIELDSONLY -
selectAll
@Select({"select","INTEGERFIELD, DOUBLEFIELD, FLOATFIELD","from FIELDSONLY"}) @Result(column="INTEGERFIELD",property="integerfield",jdbcType=INTEGER) @Result(column="DOUBLEFIELD",property="doublefield",jdbcType=DOUBLE) @Result(column="FLOATFIELD",property="floatfield",jdbcType=DOUBLE) List<Fieldsonly> selectAll()This method was generated by MyBatis Generator. This method corresponds to the database table FIELDSONLY
-