BTowerMapper.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <!--<?xml version="1.0" encoding="UTF-8"?>-->
  2. <!--<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">-->
  3. <!--<mapper namespace="com.macro.mall.tiny.modules.business.mapper.BTowerMapper">-->
  4. <!-- <insert id="saveAndUpdate" parameterType="list">-->
  5. <!-- INSERT INTO b_tower (-->
  6. <!-- sort,-->
  7. <!-- name,-->
  8. <!-- shape,-->
  9. <!-- hardware_type,-->
  10. <!-- line_id,-->
  11. <!-- lon,-->
  12. <!-- lat,-->
  13. <!-- has_file,-->
  14. <!-- create_time-->
  15. <!-- )-->
  16. <!-- VALUES-->
  17. <!-- <foreach collection="towerList" item="item" separator=",">-->
  18. <!-- (-->
  19. <!-- #{item.sort},-->
  20. <!-- #{item.name},-->
  21. <!-- #{item.shape},-->
  22. <!-- #{item.hardwareType},-->
  23. <!-- #{item.lineId},-->
  24. <!-- #{item.lon},-->
  25. <!-- #{item.lat},-->
  26. <!-- #{item.hasFile},-->
  27. <!-- #{item.createTime}-->
  28. <!-- )-->
  29. <!-- </foreach>-->
  30. <!-- ON DUPLICATE KEY UPDATE-->
  31. <!-- sort = VALUES(sort),-->
  32. <!-- shape = VALUES(shape),-->
  33. <!-- hardware_type = VALUES(hardware_type),-->
  34. <!-- lon = VALUES(lon),-->
  35. <!-- lat = VALUES(lat),-->
  36. <!-- has_file = VALUES(has_file),-->
  37. <!-- create_time = VALUES(create_time);-->
  38. <!-- </insert>-->
  39. <!-- &lt;!&ndash; 通用查询映射结果 &ndash;&gt;-->
  40. <!-- <resultMap id="BaseResultMap" type="com.macro.mall.tiny.modules.business.model.BTower">-->
  41. <!-- <id column="id" property="id"/>-->
  42. <!-- <result column="sort" property="sort"/>-->
  43. <!-- <result column="name" property="name"/>-->
  44. <!-- <result column="shape" property="shape"/>-->
  45. <!-- <result column="hardware_type" property="hardwareType"/>-->
  46. <!-- <result column="line_id" property="lineId"/>-->
  47. <!-- <result column="lon" property="lon"/>-->
  48. <!-- <result column="lat" property="lat"/>-->
  49. <!-- <result column="has_file" property="hasFile"/>-->
  50. <!-- <result column="create_time" property="createTime"/>-->
  51. <!-- </resultMap>-->
  52. <!--</mapper>-->