Skip to content

Commit

Permalink
Fixed mix-up of TSP and Duration columns.
Browse files Browse the repository at this point in the history
  • Loading branch information
dbeaudoinfortin committed May 28, 2024
1 parent eed15b5 commit 84d0b2a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public interface IntegratedDataMapper {
"<foreach collection='dataRecords' item='record' index='index' open='(' separator = '),(' close=')' >"
+ "#{record.siteId}, #{record.pollutantId}, #{record.datetime}, #{record.year}, #{record.month}, #{record.day}, "
+ "#{record.fine, typeHandler=org.apache.ibatis.type.BooleanTypeHandler}, #{record.cartridge}, #{record.media}, #{record.dayOfWeek}, "
+ "#{record.mass}, #{record.volume}, #{record.tsp}, #{record.duration}, #{record.data}"
+ "#{record.mass}, #{record.volume}, #{record.duration}, #{record.tsp}, #{record.data}"
+ "</foreach>"
+ " ON CONFLICT DO NOTHING;",
"</script>"})
Expand Down

0 comments on commit 84d0b2a

Please sign in to comment.