KrBTowerMapper.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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.KrBTowerMapper">
  4. <insert id="saveAndUpdate" parameterType="list">
  5. INSERT INTO kr_b_tower (
  6. line_id,
  7. tower_index,
  8. tower_name,
  9. tower_number,
  10. hardware_type,
  11. longitude,
  12. latitude,
  13. type,
  14. is_station,
  15. is_weather,
  16. circuit,
  17. height,
  18. practical_height,
  19. corner_direction,
  20. corner_number,
  21. span,
  22. servuce_begintime,
  23. remark,
  24. has_file,
  25. creator_id,
  26. create_time
  27. )
  28. VALUES
  29. <foreach collection="krBTowerList" item="item" separator=",">
  30. (
  31. #{item.lineId},
  32. #{item.towerIndex},
  33. #{item.towerName},
  34. #{item.towerNumber},
  35. #{item.hardwareType},
  36. #{item.longitude},
  37. #{item.latitude},
  38. #{item.type},
  39. #{item.isStation},
  40. #{item.isWeather},
  41. #{item.circuit},
  42. #{item.height},
  43. #{item.practicalHeight},
  44. #{item.cornerDirection},
  45. #{item.cornerNumber},
  46. #{item.span},
  47. #{item.servuceBegintime},
  48. #{item.remark},
  49. #{item.hasFile},
  50. #{item.creatorId},
  51. #{item.createTime}
  52. )
  53. </foreach>
  54. ON DUPLICATE KEY UPDATE
  55. tower_name = VALUES(tower_name),
  56. tower_number = VALUES(tower_number),
  57. hardware_type = VALUES(hardware_type),
  58. longitude = VALUES(longitude),
  59. latitude = VALUES(latitude),
  60. type = VALUES(type),
  61. is_station = VALUES(is_station),
  62. is_weather = VALUES(is_weather),
  63. circuit = VALUES(circuit),
  64. height = VALUES(height),
  65. practical_height = VALUES(practical_height),
  66. corner_direction = VALUES(corner_direction),
  67. corner_number = VALUES(corner_number),
  68. span = VALUES(span),
  69. span = VALUES(span),
  70. servuce_begintime = VALUES(servuce_begintime),
  71. remark = VALUES(remark),
  72. remark = VALUES(remark),
  73. has_file = VALUES(has_file),
  74. creator_id = VALUES(creator_id),
  75. create_time = VALUES(create_time);
  76. </insert>
  77. <!-- 通用查询映射结果 -->
  78. <resultMap id="BaseResultMap" type="com.macro.mall.tiny.modules.business.model.KrBTower">
  79. <id column="id" property="id"/>
  80. <result column="line_id" property="lineId"/>
  81. <result column="tower_index" property="towerIndex"/>
  82. <result column="tower_name" property="towerName"/>
  83. <result column="tower_number" property="towerNumber"/>
  84. <result column="hardware_type" property="hardwareType"/>
  85. <result column="longitude" property="longitude"/>
  86. <result column="latitude" property="latitude"/>
  87. <result column="type" property="type"/>
  88. <result column="is_station" property="isStation"/>
  89. <result column="is_weather" property="isWeather"/>
  90. <result column="circuit" property="circuit"/>
  91. <result column="height" property="height"/>
  92. <result column="practical_height" property="practicalHeight"/>
  93. <result column="corner_direction" property="cornerDirection"/>
  94. <result column="corner_number" property="cornerNumber"/>
  95. <result column="span" property="span"/>
  96. <result column="servuce_begintime" property="servuceBegintime"/>
  97. <result column="remark" property="remark"/>
  98. <result column="has_file" property="hasFile"/>
  99. <result column="creator_id" property="creatorId"/>
  100. <result column="create_time" property="createTime"/>
  101. </resultMap>
  102. </mapper>