123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="com.macro.mall.tiny.modules.business.mapper.KrBTowerMapper">
- <insert id="saveAndUpdate" parameterType="list">
- INSERT INTO kr_b_tower (
- line_id,
- tower_index,
- tower_name,
- tower_number,
- hardware_type,
- longitude,
- latitude,
- type,
- is_station,
- is_weather,
- circuit,
- height,
- practical_height,
- corner_direction,
- corner_number,
- span,
- servuce_begintime,
- remark,
- has_file,
- creator_id,
- create_time
- )
- VALUES
- <foreach collection="krBTowerList" item="item" separator=",">
- (
- #{item.lineId},
- #{item.towerIndex},
- #{item.towerName},
- #{item.towerNumber},
- #{item.hardwareType},
- #{item.longitude},
- #{item.latitude},
- #{item.type},
- #{item.isStation},
- #{item.isWeather},
- #{item.circuit},
- #{item.height},
- #{item.practicalHeight},
- #{item.cornerDirection},
- #{item.cornerNumber},
- #{item.span},
- #{item.servuceBegintime},
- #{item.remark},
- #{item.hasFile},
- #{item.creatorId},
- #{item.createTime}
- )
- </foreach>
- ON DUPLICATE KEY UPDATE
- tower_name = VALUES(tower_name),
- tower_number = VALUES(tower_number),
- hardware_type = VALUES(hardware_type),
- longitude = VALUES(longitude),
- latitude = VALUES(latitude),
- type = VALUES(type),
- is_station = VALUES(is_station),
- is_weather = VALUES(is_weather),
- circuit = VALUES(circuit),
- height = VALUES(height),
- practical_height = VALUES(practical_height),
- corner_direction = VALUES(corner_direction),
- corner_number = VALUES(corner_number),
- span = VALUES(span),
- span = VALUES(span),
- servuce_begintime = VALUES(servuce_begintime),
- remark = VALUES(remark),
- remark = VALUES(remark),
- has_file = VALUES(has_file),
- creator_id = VALUES(creator_id),
- create_time = VALUES(create_time);
- </insert>
- <!-- 通用查询映射结果 -->
- <resultMap id="BaseResultMap" type="com.macro.mall.tiny.modules.business.model.KrBTower">
- <id column="id" property="id"/>
- <result column="line_id" property="lineId"/>
- <result column="tower_index" property="towerIndex"/>
- <result column="tower_name" property="towerName"/>
- <result column="tower_number" property="towerNumber"/>
- <result column="hardware_type" property="hardwareType"/>
- <result column="longitude" property="longitude"/>
- <result column="latitude" property="latitude"/>
- <result column="type" property="type"/>
- <result column="is_station" property="isStation"/>
- <result column="is_weather" property="isWeather"/>
- <result column="circuit" property="circuit"/>
- <result column="height" property="height"/>
- <result column="practical_height" property="practicalHeight"/>
- <result column="corner_direction" property="cornerDirection"/>
- <result column="corner_number" property="cornerNumber"/>
- <result column="span" property="span"/>
- <result column="servuce_begintime" property="servuceBegintime"/>
- <result column="remark" property="remark"/>
- <result column="has_file" property="hasFile"/>
- <result column="creator_id" property="creatorId"/>
- <result column="create_time" property="createTime"/>
- </resultMap>
- </mapper>
|