22 lines
854 B
XML
22 lines
854 B
XML
<?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.alonginfo.project.gansu.mapper.DynamicDataPushDao">
|
|
|
|
<!--查询甘肃电力交易中心地址-->
|
|
<select id="findAll" resultType="com.alonginfo.project.gansu.domain.SgccAddress">
|
|
SELECT
|
|
id, sgcc_name sgccName, sgcc_address sgccAddress
|
|
FROM
|
|
sgcc_address
|
|
</select>
|
|
|
|
<!--交互电力交易中心-交易序列入库-->
|
|
<insert id="pushTradeSeq">
|
|
INSERT INTO
|
|
task_trade_seq(trade_seq_id, trade_seq_caption, data_time)
|
|
VALUES
|
|
<foreach collection="list" item="item" separator=",">
|
|
(#{item.tradeSeqId}, #{item.tradeSeqCaption}, #{item.dataTime})
|
|
</foreach>
|
|
</insert>
|
|
</mapper> |