Browse Source

添加同步日子

hym 4 years ago
parent
commit
05e18f8740
1 changed files with 157 additions and 0 deletions
  1. 157 0
      water_query_api/src/main/resources/mapper/WarningLogMapper.xml

+ 157 - 0
water_query_api/src/main/resources/mapper/WarningLogMapper.xml

@@ -0,0 +1,157 @@
+<?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.zcxk.dao.WarningLogMapper">
+  <resultMap id="BaseResultMap" type="com.zcxk.entity.WarningLog">
+    <!--@mbg.generated-->
+    <!--@Table sc_warning_log-->
+    <id column="id" property="id" />
+    <result column="client_user_id" property="clientUserId" />
+    <result column="device_id" property="deviceId" />
+    <result column="warning_type" property="warningType" />
+    <result column="feedback_status" property="feedbackStatus" />
+    <result column="feedback_content" property="feedbackContent" />
+    <result column="last_date" property="lastDate" />
+    <result column="status" property="status" />
+    <result column="create_by" property="createBy" />
+    <result column="date_create" property="dateCreate" />
+    <result column="update_by" property="updateBy" />
+    <result column="date_update" property="dateUpdate" />
+  </resultMap>
+  <sql id="Base_Column_List">
+    <!--@mbg.generated-->
+    id, client_user_id, device_id, warning_type, feedback_status, feedback_content, last_date, 
+    `status`, create_by, date_create, update_by, date_update
+  </sql>
+  <insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.zcxk.entity.WarningLog" useGeneratedKeys="true">
+    <!--@mbg.generated-->
+    insert into sc_warning_log
+    <trim prefix="(" suffix=")" suffixOverrides=",">
+      <if test="clientUserId != null">
+        client_user_id,
+      </if>
+      <if test="deviceId != null">
+        device_id,
+      </if>
+      <if test="warningType != null">
+        warning_type,
+      </if>
+      <if test="feedbackStatus != null">
+        feedback_status,
+      </if>
+      <if test="feedbackContent != null">
+        feedback_content,
+      </if>
+      <if test="lastDate != null">
+        last_date,
+      </if>
+      <if test="status != null">
+        `status`,
+      </if>
+      <if test="createBy != null">
+        create_by,
+      </if>
+      <if test="dateCreate != null">
+        date_create,
+      </if>
+      <if test="updateBy != null">
+        update_by,
+      </if>
+      <if test="dateUpdate != null">
+        date_update,
+      </if>
+    </trim>
+    <trim prefix="values (" suffix=")" suffixOverrides=",">
+      <if test="clientUserId != null">
+        #{clientUserId},
+      </if>
+      <if test="deviceId != null">
+        #{deviceId},
+      </if>
+      <if test="warningType != null">
+        #{warningType},
+      </if>
+      <if test="feedbackStatus != null">
+        #{feedbackStatus},
+      </if>
+      <if test="feedbackContent != null">
+        #{feedbackContent},
+      </if>
+      <if test="lastDate != null">
+        #{lastDate},
+      </if>
+      <if test="status != null">
+        #{status},
+      </if>
+      <if test="createBy != null">
+        #{createBy},
+      </if>
+      <if test="dateCreate != null">
+        #{dateCreate},
+      </if>
+      <if test="updateBy != null">
+        #{updateBy},
+      </if>
+      <if test="dateUpdate != null">
+        #{dateUpdate},
+      </if>
+    </trim>
+  </insert>
+  <update id="updateByPrimaryKeySelective" parameterType="com.zcxk.entity.WarningLog">
+    <!--@mbg.generated-->
+    update sc_warning_log
+    <set>
+      <if test="clientUserId != null">
+        client_user_id = #{clientUserId},
+      </if>
+      <if test="deviceId != null">
+        device_id = #{deviceId},
+      </if>
+      <if test="warningType != null">
+        warning_type = #{warningType},
+      </if>
+      <if test="feedbackStatus != null">
+        feedback_status = #{feedbackStatus},
+      </if>
+      <if test="feedbackContent != null">
+        feedback_content = #{feedbackContent},
+      </if>
+      <if test="lastDate != null">
+        last_date = #{lastDate},
+      </if>
+      <if test="status != null">
+        `status` = #{status},
+      </if>
+      <if test="createBy != null">
+        create_by = #{createBy},
+      </if>
+      <if test="dateCreate != null">
+        date_create = #{dateCreate},
+      </if>
+      <if test="updateBy != null">
+        update_by = #{updateBy},
+      </if>
+      <if test="dateUpdate != null">
+        date_update = #{dateUpdate},
+      </if>
+    </set>
+    where id = #{id}
+  </update>
+  <insert id="batchInsert" keyColumn="id" keyProperty="id" parameterType="map" useGeneratedKeys="true">
+    <!--@mbg.generated-->
+    insert into sc_warning_log
+    (client_user_id, device_id, warning_type, feedback_status, feedback_content, last_date, 
+      `status`, create_by, date_create, update_by, date_update)
+    values
+    <foreach collection="list" item="item" separator=",">
+      (#{item.clientUserId}, #{item.deviceId}, #{item.warningType}, #{item.feedbackStatus}, 
+        #{item.feedbackContent}, #{item.lastDate}, #{item.status}, #{item.createBy}, #{item.dateCreate}, 
+        #{item.updateBy}, #{item.dateUpdate})
+    </foreach>
+  </insert>
+
+  <select id="findByDeviceId" resultMap="BaseResultMap">
+    select <include refid="Base_Column_List" />
+    from sc_warning_log
+    where status = 1 and device_id = #{deviceId} and warning_type = #{warningType} order by date_create desc limit 1
+  </select>
+</mapper>