package com.hfkj.dao; import com.hfkj.entity.BsDevice; import com.hfkj.entity.BsDeviceExample; 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 BsDeviceMapper extends BsDeviceMapperExt { @SelectProvider(type=BsDeviceSqlProvider.class, method="countByExample") long countByExample(BsDeviceExample example); @DeleteProvider(type=BsDeviceSqlProvider.class, method="deleteByExample") int deleteByExample(BsDeviceExample example); @Delete({ "delete from bs_device", "where id = #{id,jdbcType=BIGINT}" }) int deleteByPrimaryKey(Long id); @Insert({ "insert into bs_device (`type`, company_id, ", "company_name, agent_id, ", "agent_name, mer_id, ", "mer_no, mer_name, ", "device_name, device_sn, ", "device_key, device_imei, ", "device_iccid, receipt_top, ", "receipt_source, receipt_bottom, ", "`status`, create_time, ", "update_time, ext_1, ", "ext_2, ext_3)", "values (#{type,jdbcType=INTEGER}, #{companyId,jdbcType=BIGINT}, ", "#{companyName,jdbcType=VARCHAR}, #{agentId,jdbcType=BIGINT}, ", "#{agentName,jdbcType=VARCHAR}, #{merId,jdbcType=BIGINT}, ", "#{merNo,jdbcType=VARCHAR}, #{merName,jdbcType=VARCHAR}, ", "#{deviceName,jdbcType=VARCHAR}, #{deviceSn,jdbcType=VARCHAR}, ", "#{deviceKey,jdbcType=VARCHAR}, #{deviceImei,jdbcType=VARCHAR}, ", "#{deviceIccid,jdbcType=VARCHAR}, #{receiptTop,jdbcType=VARCHAR}, ", "#{receiptSource,jdbcType=VARCHAR}, #{receiptBottom,jdbcType=VARCHAR}, ", "#{status,jdbcType=INTEGER}, #{createTime,jdbcType=TIMESTAMP}, ", "#{updateTime,jdbcType=TIMESTAMP}, #{ext1,jdbcType=VARCHAR}, ", "#{ext2,jdbcType=VARCHAR}, #{ext3,jdbcType=VARCHAR})" }) @Options(useGeneratedKeys=true,keyProperty="id") int insert(BsDevice record); @InsertProvider(type=BsDeviceSqlProvider.class, method="insertSelective") @Options(useGeneratedKeys=true,keyProperty="id") int insertSelective(BsDevice record); @SelectProvider(type=BsDeviceSqlProvider.class, method="selectByExample") @Results({ @Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true), @Result(column="type", property="type", jdbcType=JdbcType.INTEGER), @Result(column="company_id", property="companyId", jdbcType=JdbcType.BIGINT), @Result(column="company_name", property="companyName", jdbcType=JdbcType.VARCHAR), @Result(column="agent_id", property="agentId", jdbcType=JdbcType.BIGINT), @Result(column="agent_name", property="agentName", jdbcType=JdbcType.VARCHAR), @Result(column="mer_id", property="merId", jdbcType=JdbcType.BIGINT), @Result(column="mer_no", property="merNo", jdbcType=JdbcType.VARCHAR), @Result(column="mer_name", property="merName", jdbcType=JdbcType.VARCHAR), @Result(column="device_name", property="deviceName", jdbcType=JdbcType.VARCHAR), @Result(column="device_sn", property="deviceSn", jdbcType=JdbcType.VARCHAR), @Result(column="device_key", property="deviceKey", jdbcType=JdbcType.VARCHAR), @Result(column="device_imei", property="deviceImei", jdbcType=JdbcType.VARCHAR), @Result(column="device_iccid", property="deviceIccid", jdbcType=JdbcType.VARCHAR), @Result(column="receipt_top", property="receiptTop", jdbcType=JdbcType.VARCHAR), @Result(column="receipt_source", property="receiptSource", jdbcType=JdbcType.VARCHAR), @Result(column="receipt_bottom", property="receiptBottom", jdbcType=JdbcType.VARCHAR), @Result(column="status", property="status", jdbcType=JdbcType.INTEGER), @Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP), @Result(column="update_time", property="updateTime", jdbcType=JdbcType.TIMESTAMP), @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(BsDeviceExample example); @Select({ "select", "id, `type`, company_id, company_name, agent_id, agent_name, mer_id, mer_no, ", "mer_name, device_name, device_sn, device_key, device_imei, device_iccid, receipt_top, ", "receipt_source, receipt_bottom, `status`, create_time, update_time, ext_1, ext_2, ", "ext_3", "from bs_device", "where id = #{id,jdbcType=BIGINT}" }) @Results({ @Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true), @Result(column="type", property="type", jdbcType=JdbcType.INTEGER), @Result(column="company_id", property="companyId", jdbcType=JdbcType.BIGINT), @Result(column="company_name", property="companyName", jdbcType=JdbcType.VARCHAR), @Result(column="agent_id", property="agentId", jdbcType=JdbcType.BIGINT), @Result(column="agent_name", property="agentName", jdbcType=JdbcType.VARCHAR), @Result(column="mer_id", property="merId", jdbcType=JdbcType.BIGINT), @Result(column="mer_no", property="merNo", jdbcType=JdbcType.VARCHAR), @Result(column="mer_name", property="merName", jdbcType=JdbcType.VARCHAR), @Result(column="device_name", property="deviceName", jdbcType=JdbcType.VARCHAR), @Result(column="device_sn", property="deviceSn", jdbcType=JdbcType.VARCHAR), @Result(column="device_key", property="deviceKey", jdbcType=JdbcType.VARCHAR), @Result(column="device_imei", property="deviceImei", jdbcType=JdbcType.VARCHAR), @Result(column="device_iccid", property="deviceIccid", jdbcType=JdbcType.VARCHAR), @Result(column="receipt_top", property="receiptTop", jdbcType=JdbcType.VARCHAR), @Result(column="receipt_source", property="receiptSource", jdbcType=JdbcType.VARCHAR), @Result(column="receipt_bottom", property="receiptBottom", jdbcType=JdbcType.VARCHAR), @Result(column="status", property="status", jdbcType=JdbcType.INTEGER), @Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP), @Result(column="update_time", property="updateTime", jdbcType=JdbcType.TIMESTAMP), @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) }) BsDevice selectByPrimaryKey(Long id); @UpdateProvider(type=BsDeviceSqlProvider.class, method="updateByExampleSelective") int updateByExampleSelective(@Param("record") BsDevice record, @Param("example") BsDeviceExample example); @UpdateProvider(type=BsDeviceSqlProvider.class, method="updateByExample") int updateByExample(@Param("record") BsDevice record, @Param("example") BsDeviceExample example); @UpdateProvider(type=BsDeviceSqlProvider.class, method="updateByPrimaryKeySelective") int updateByPrimaryKeySelective(BsDevice record); @Update({ "update bs_device", "set `type` = #{type,jdbcType=INTEGER},", "company_id = #{companyId,jdbcType=BIGINT},", "company_name = #{companyName,jdbcType=VARCHAR},", "agent_id = #{agentId,jdbcType=BIGINT},", "agent_name = #{agentName,jdbcType=VARCHAR},", "mer_id = #{merId,jdbcType=BIGINT},", "mer_no = #{merNo,jdbcType=VARCHAR},", "mer_name = #{merName,jdbcType=VARCHAR},", "device_name = #{deviceName,jdbcType=VARCHAR},", "device_sn = #{deviceSn,jdbcType=VARCHAR},", "device_key = #{deviceKey,jdbcType=VARCHAR},", "device_imei = #{deviceImei,jdbcType=VARCHAR},", "device_iccid = #{deviceIccid,jdbcType=VARCHAR},", "receipt_top = #{receiptTop,jdbcType=VARCHAR},", "receipt_source = #{receiptSource,jdbcType=VARCHAR},", "receipt_bottom = #{receiptBottom,jdbcType=VARCHAR},", "`status` = #{status,jdbcType=INTEGER},", "create_time = #{createTime,jdbcType=TIMESTAMP},", "update_time = #{updateTime,jdbcType=TIMESTAMP},", "ext_1 = #{ext1,jdbcType=VARCHAR},", "ext_2 = #{ext2,jdbcType=VARCHAR},", "ext_3 = #{ext3,jdbcType=VARCHAR}", "where id = #{id,jdbcType=BIGINT}" }) int updateByPrimaryKey(BsDevice record); }