package com.hai.dao; import com.hai.entity.HighFleetOilCardUser; import com.hai.entity.HighFleetOilCardUserExample; import java.util.List; import org.apache.ibatis.annotations.Delete; import org.apache.ibatis.annotations.DeleteProvider; import org.apache.ibatis.annotations.Insert; import org.apache.ibatis.annotations.InsertProvider; import org.apache.ibatis.annotations.Options; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Result; import org.apache.ibatis.annotations.Results; import org.apache.ibatis.annotations.Select; import org.apache.ibatis.annotations.SelectProvider; import org.apache.ibatis.annotations.Update; import org.apache.ibatis.annotations.UpdateProvider; import org.apache.ibatis.type.JdbcType; import org.springframework.stereotype.Repository; /** * * 代码由工具生成,请勿修改!!! * 如果需要扩展请在其父类进行扩展 * **/ @Repository public interface HighFleetOilCardUserMapper extends HighFleetOilCardUserMapperExt { @SelectProvider(type=HighFleetOilCardUserSqlProvider.class, method="countByExample") long countByExample(HighFleetOilCardUserExample example); @DeleteProvider(type=HighFleetOilCardUserSqlProvider.class, method="deleteByExample") int deleteByExample(HighFleetOilCardUserExample example); @Delete({ "delete from high_fleet_oil_card_user", "where id = #{id,jdbcType=BIGINT}" }) int deleteByPrimaryKey(Long id); @Insert({ "insert into high_fleet_oil_card_user (fleet_oil_card_id, fleet_oil_card_no, ", "contact_name, contact_phone, ", "`status`, amount_consume, ", "lately_consume_time, create_time, ", "update_time, op_user_id, ", "op_user_name, ext_1, ", "ext_2, ext_3)", "values (#{fleetOilCardId,jdbcType=BIGINT}, #{fleetOilCardNo,jdbcType=VARCHAR}, ", "#{contactName,jdbcType=VARCHAR}, #{contactPhone,jdbcType=VARCHAR}, ", "#{status,jdbcType=INTEGER}, #{amountConsume,jdbcType=DECIMAL}, ", "#{latelyConsumeTime,jdbcType=TIMESTAMP}, #{createTime,jdbcType=TIMESTAMP}, ", "#{updateTime,jdbcType=TIMESTAMP}, #{opUserId,jdbcType=BIGINT}, ", "#{opUserName,jdbcType=VARCHAR}, #{ext1,jdbcType=VARCHAR}, ", "#{ext2,jdbcType=VARCHAR}, #{ext3,jdbcType=VARCHAR})" }) @Options(useGeneratedKeys=true,keyProperty="id") int insert(HighFleetOilCardUser record); @InsertProvider(type=HighFleetOilCardUserSqlProvider.class, method="insertSelective") @Options(useGeneratedKeys=true,keyProperty="id") int insertSelective(HighFleetOilCardUser record); @SelectProvider(type=HighFleetOilCardUserSqlProvider.class, method="selectByExample") @Results({ @Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true), @Result(column="fleet_oil_card_id", property="fleetOilCardId", jdbcType=JdbcType.BIGINT), @Result(column="fleet_oil_card_no", property="fleetOilCardNo", jdbcType=JdbcType.VARCHAR), @Result(column="contact_name", property="contactName", jdbcType=JdbcType.VARCHAR), @Result(column="contact_phone", property="contactPhone", jdbcType=JdbcType.VARCHAR), @Result(column="status", property="status", jdbcType=JdbcType.INTEGER), @Result(column="amount_consume", property="amountConsume", jdbcType=JdbcType.DECIMAL), @Result(column="lately_consume_time", property="latelyConsumeTime", jdbcType=JdbcType.TIMESTAMP), @Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP), @Result(column="update_time", property="updateTime", jdbcType=JdbcType.TIMESTAMP), @Result(column="op_user_id", property="opUserId", jdbcType=JdbcType.BIGINT), @Result(column="op_user_name", property="opUserName", jdbcType=JdbcType.VARCHAR), @Result(column="ext_1", property="ext1", jdbcType=JdbcType.VARCHAR), @Result(column="ext_2", property="ext2", jdbcType=JdbcType.VARCHAR), @Result(column="ext_3", property="ext3", jdbcType=JdbcType.VARCHAR) }) List selectByExample(HighFleetOilCardUserExample example); @Select({ "select", "id, fleet_oil_card_id, fleet_oil_card_no, contact_name, contact_phone, `status`, ", "amount_consume, lately_consume_time, create_time, update_time, op_user_id, op_user_name, ", "ext_1, ext_2, ext_3", "from high_fleet_oil_card_user", "where id = #{id,jdbcType=BIGINT}" }) @Results({ @Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true), @Result(column="fleet_oil_card_id", property="fleetOilCardId", jdbcType=JdbcType.BIGINT), @Result(column="fleet_oil_card_no", property="fleetOilCardNo", jdbcType=JdbcType.VARCHAR), @Result(column="contact_name", property="contactName", jdbcType=JdbcType.VARCHAR), @Result(column="contact_phone", property="contactPhone", jdbcType=JdbcType.VARCHAR), @Result(column="status", property="status", jdbcType=JdbcType.INTEGER), @Result(column="amount_consume", property="amountConsume", jdbcType=JdbcType.DECIMAL), @Result(column="lately_consume_time", property="latelyConsumeTime", jdbcType=JdbcType.TIMESTAMP), @Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP), @Result(column="update_time", property="updateTime", jdbcType=JdbcType.TIMESTAMP), @Result(column="op_user_id", property="opUserId", jdbcType=JdbcType.BIGINT), @Result(column="op_user_name", property="opUserName", jdbcType=JdbcType.VARCHAR), @Result(column="ext_1", property="ext1", jdbcType=JdbcType.VARCHAR), @Result(column="ext_2", property="ext2", jdbcType=JdbcType.VARCHAR), @Result(column="ext_3", property="ext3", jdbcType=JdbcType.VARCHAR) }) HighFleetOilCardUser selectByPrimaryKey(Long id); @UpdateProvider(type=HighFleetOilCardUserSqlProvider.class, method="updateByExampleSelective") int updateByExampleSelective(@Param("record") HighFleetOilCardUser record, @Param("example") HighFleetOilCardUserExample example); @UpdateProvider(type=HighFleetOilCardUserSqlProvider.class, method="updateByExample") int updateByExample(@Param("record") HighFleetOilCardUser record, @Param("example") HighFleetOilCardUserExample example); @UpdateProvider(type=HighFleetOilCardUserSqlProvider.class, method="updateByPrimaryKeySelective") int updateByPrimaryKeySelective(HighFleetOilCardUser record); @Update({ "update high_fleet_oil_card_user", "set fleet_oil_card_id = #{fleetOilCardId,jdbcType=BIGINT},", "fleet_oil_card_no = #{fleetOilCardNo,jdbcType=VARCHAR},", "contact_name = #{contactName,jdbcType=VARCHAR},", "contact_phone = #{contactPhone,jdbcType=VARCHAR},", "`status` = #{status,jdbcType=INTEGER},", "amount_consume = #{amountConsume,jdbcType=DECIMAL},", "lately_consume_time = #{latelyConsumeTime,jdbcType=TIMESTAMP},", "create_time = #{createTime,jdbcType=TIMESTAMP},", "update_time = #{updateTime,jdbcType=TIMESTAMP},", "op_user_id = #{opUserId,jdbcType=BIGINT},", "op_user_name = #{opUserName,jdbcType=VARCHAR},", "ext_1 = #{ext1,jdbcType=VARCHAR},", "ext_2 = #{ext2,jdbcType=VARCHAR},", "ext_3 = #{ext3,jdbcType=VARCHAR}", "where id = #{id,jdbcType=BIGINT}" }) int updateByPrimaryKey(HighFleetOilCardUser record); }