Interface FieldsonlyMapper
public interface FieldsonlyMapper
-
Method Summary
Modifier and TypeMethodDescriptionlongcountByExample(FieldsonlyExample example) This method was generated by MyBatis Generator.intdeleteByExample(FieldsonlyExample example) This method was generated by MyBatis Generator.intinsert(Fieldsonly row) This method was generated by MyBatis Generator.intThis method was generated by MyBatis Generator.selectByExample(FieldsonlyExample example) This method was generated by MyBatis Generator.intupdateByExample(Fieldsonly row, FieldsonlyExample example) This method was generated by MyBatis Generator.intupdateByExampleSelective(Fieldsonly row, FieldsonlyExample example) This method was generated by MyBatis Generator.
-
Method Details
-
countByExample
@SelectProvider(type=FieldsonlySqlProvider.class, method="countByExample") long countByExample(FieldsonlyExample example) This method was generated by MyBatis Generator. This method corresponds to the database table FIELDSONLY -
deleteByExample
@DeleteProvider(type=FieldsonlySqlProvider.class, method="deleteByExample") int deleteByExample(FieldsonlyExample example) This method was generated by MyBatis Generator. This method corresponds to the database table FIELDSONLY -
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 -
insertSelective
@InsertProvider(type=FieldsonlySqlProvider.class, method="insertSelective") int insertSelective(Fieldsonly row) This method was generated by MyBatis Generator. This method corresponds to the database table FIELDSONLY -
selectByExample
@SelectProvider(type=FieldsonlySqlProvider.class, method="selectByExample") @Result(column="INTEGERFIELD",property="integerfield",jdbcType=INTEGER) @Result(column="DOUBLEFIELD",property="doublefield",jdbcType=DOUBLE) @Result(column="FLOATFIELD",property="floatfield",jdbcType=DOUBLE) List<Fieldsonly> selectByExample(FieldsonlyExample example) This method was generated by MyBatis Generator. This method corresponds to the database table FIELDSONLY -
updateByExampleSelective
@UpdateProvider(type=FieldsonlySqlProvider.class, method="updateByExampleSelective") int updateByExampleSelective(@Param("row") Fieldsonly row, @Param("example") FieldsonlyExample example) This method was generated by MyBatis Generator. This method corresponds to the database table FIELDSONLY -
updateByExample
@UpdateProvider(type=FieldsonlySqlProvider.class, method="updateByExample") int updateByExample(@Param("row") Fieldsonly row, @Param("example") FieldsonlyExample example) This method was generated by MyBatis Generator. This method corresponds to the database table FIELDSONLY
-