|
@@ -56,8 +56,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
insert into t_offline_data_analysis
|
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
<if test="dataId != null">data_id,</if>
|
|
|
- <if test="airNumber != null">air_number,</if>
|
|
|
- <if test="flightDuration != null">flight_duration,</if>
|
|
|
<if test="type != null">type,</if>
|
|
|
<if test="resultPath != null">result_path,</if>
|
|
|
<if test="remark != null">remark,</if>
|
|
@@ -68,8 +66,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</trim>
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
<if test="dataId != null">#{dataId},</if>
|
|
|
- <if test="airNumber != null">#{airNumber},</if>
|
|
|
- <if test="flightDuration != null">#{flightDuration},</if>
|
|
|
<if test="type != null">#{type},</if>
|
|
|
<if test="resultPath != null">#{resultPath},</if>
|
|
|
<if test="remark != null">#{remark},</if>
|
|
@@ -84,8 +80,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
update t_offline_data_analysis
|
|
|
<trim prefix="SET" suffixOverrides=",">
|
|
|
<if test="dataId != null">data_id = #{dataId},</if>
|
|
|
- <if test="airNumber != null">air_number = #{airNumber},</if>
|
|
|
- <if test="flightDuration != null">flight_duration = #{flightDuration},</if>
|
|
|
<if test="type != null">type = #{type},</if>
|
|
|
<if test="resultPath != null">result_path = #{resultPath},</if>
|
|
|
<if test="remark != null">remark = #{remark},</if>
|