127 lines
6.7 KiB
XML
127 lines
6.7 KiB
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.xzzn.ems.mapper.EmsBatteryDataMapper">
|
|
|
|
<resultMap type="EmsBatteryData" id="EmsBatteryDataResult">
|
|
<result property="id" column="id" />
|
|
<result property="batteryPack" column="battery_pack" />
|
|
<result property="batteryCluster" column="battery_cluster" />
|
|
<result property="batteryCellId" column="battery_cell_id" />
|
|
<result property="voltage" column="voltage" />
|
|
<result property="temperature" column="temperature" />
|
|
<result property="soc" column="soc" />
|
|
<result property="soh" column="soh" />
|
|
<result property="dataTimestamp" column="data_timestamp" />
|
|
<result property="createBy" column="create_by" />
|
|
<result property="createTime" column="create_time" />
|
|
<result property="updateBy" column="update_by" />
|
|
<result property="updateTime" column="update_time" />
|
|
<result property="remark" column="remark" />
|
|
<result property="siteId" column="site_id" />
|
|
<result property="deviceId" column="device_id" />
|
|
</resultMap>
|
|
|
|
<sql id="selectEmsBatteryDataVo">
|
|
select id, battery_pack, battery_cluster, battery_cell_id, voltage, temperature, soc, soh, data_timestamp, create_by, create_time, update_by, update_time, remark, site_id, device_id from ems_battery_data
|
|
</sql>
|
|
|
|
<select id="selectEmsBatteryDataList" parameterType="EmsBatteryData" resultMap="EmsBatteryDataResult">
|
|
<include refid="selectEmsBatteryDataVo"/>
|
|
<where>
|
|
<if test="batteryPack != null and batteryPack != ''"> and battery_pack = #{batteryPack}</if>
|
|
<if test="batteryCluster != null and batteryCluster != ''"> and battery_cluster = #{batteryCluster}</if>
|
|
<if test="batteryCellId != null and batteryCellId != ''"> and battery_cell_id = #{batteryCellId}</if>
|
|
<if test="voltage != null "> and voltage = #{voltage}</if>
|
|
<if test="temperature != null "> and temperature = #{temperature}</if>
|
|
<if test="soc != null "> and soc = #{soc}</if>
|
|
<if test="soh != null "> and soh = #{soh}</if>
|
|
<if test="dataTimestamp != null "> and data_timestamp = #{dataTimestamp}</if>
|
|
<if test="siteId != null "> and site_id = #{siteId}</if>
|
|
<if test="deviceId != null "> and device_id = #{deviceId}</if>
|
|
</where>
|
|
</select>
|
|
|
|
<select id="selectEmsBatteryDataById" parameterType="Long" resultMap="EmsBatteryDataResult">
|
|
<include refid="selectEmsBatteryDataVo"/>
|
|
where id = #{id}
|
|
</select>
|
|
|
|
<insert id="insertEmsBatteryData" parameterType="EmsBatteryData" useGeneratedKeys="true" keyProperty="id">
|
|
insert into ems_battery_data
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
<if test="batteryPack != null">battery_pack,</if>
|
|
<if test="batteryCluster != null">battery_cluster,</if>
|
|
<if test="batteryCellId != null">battery_cell_id,</if>
|
|
<if test="voltage != null">voltage,</if>
|
|
<if test="temperature != null">temperature,</if>
|
|
<if test="soc != null">soc,</if>
|
|
<if test="soh != null">soh,</if>
|
|
<if test="dataTimestamp != null">data_timestamp,</if>
|
|
<if test="createBy != null">create_by,</if>
|
|
<if test="createTime != null">create_time,</if>
|
|
<if test="updateBy != null">update_by,</if>
|
|
<if test="updateTime != null">update_time,</if>
|
|
<if test="remark != null">remark,</if>
|
|
<if test="siteId != null">site_id,</if>
|
|
<if test="deviceId != null">device_id,</if>
|
|
</trim>
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<if test="batteryPack != null">#{batteryPack},</if>
|
|
<if test="batteryCluster != null">#{batteryCluster},</if>
|
|
<if test="batteryCellId != null">#{batteryCellId},</if>
|
|
<if test="voltage != null">#{voltage},</if>
|
|
<if test="temperature != null">#{temperature},</if>
|
|
<if test="soc != null">#{soc},</if>
|
|
<if test="soh != null">#{soh},</if>
|
|
<if test="dataTimestamp != null">#{dataTimestamp},</if>
|
|
<if test="createBy != null">#{createBy},</if>
|
|
<if test="createTime != null">#{createTime},</if>
|
|
<if test="updateBy != null">#{updateBy},</if>
|
|
<if test="updateTime != null">#{updateTime},</if>
|
|
<if test="remark != null">#{remark},</if>
|
|
<if test="siteId != null">#{siteId},</if>
|
|
<if test="deviceId != null">#{deviceId},</if>
|
|
</trim>
|
|
</insert>
|
|
|
|
<update id="updateEmsBatteryData" parameterType="EmsBatteryData">
|
|
update ems_battery_data
|
|
<trim prefix="SET" suffixOverrides=",">
|
|
<if test="batteryPack != null">battery_pack = #{batteryPack},</if>
|
|
<if test="batteryCluster != null">battery_cluster = #{batteryCluster},</if>
|
|
<if test="batteryCellId != null">battery_cell_id = #{batteryCellId},</if>
|
|
<if test="voltage != null">voltage = #{voltage},</if>
|
|
<if test="temperature != null">temperature = #{temperature},</if>
|
|
<if test="soc != null">soc = #{soc},</if>
|
|
<if test="soh != null">soh = #{soh},</if>
|
|
<if test="dataTimestamp != null">data_timestamp = #{dataTimestamp},</if>
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
<if test="updateBy != null">update_by = #{updateBy},</if>
|
|
<if test="updateTime != null">update_time = #{updateTime},</if>
|
|
<if test="remark != null">remark = #{remark},</if>
|
|
<if test="siteId != null">site_id = #{siteId},</if>
|
|
<if test="deviceId != null">device_id = #{deviceId},</if>
|
|
</trim>
|
|
where id = #{id}
|
|
</update>
|
|
|
|
<delete id="deleteEmsBatteryDataById" parameterType="Long">
|
|
delete from ems_battery_data where id = #{id}
|
|
</delete>
|
|
|
|
<delete id="deleteEmsBatteryDataByIds" parameterType="String">
|
|
delete from ems_battery_data where id in
|
|
<foreach item="id" collection="array" open="(" separator="," close=")">
|
|
#{id}
|
|
</foreach>
|
|
</delete>
|
|
|
|
<select id="getBatteryDataBySiteId" parameterType="Long" resultMap="EmsBatteryDataResult">
|
|
<include refid="selectEmsBatteryDataVo"/>
|
|
where site_id = #{siteId}
|
|
and DATE(data_timestamp) = DATE(NOW())
|
|
</select>
|
|
</mapper> |