|
@@ -185,6 +185,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="results != null">results,</if>
|
|
|
<if test="operationQuantity != null">operation_quantity,</if>
|
|
|
<if test="operationStatus != null">operation_status,</if>
|
|
|
+ <if test="exceptionLog != null">exception_log,</if>
|
|
|
</trim>
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
<if test="id != null">#{id},</if>
|
|
@@ -208,6 +209,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="results != null">#{results},</if>
|
|
|
<if test="operationQuantity != null">#{operationQuantity},</if>
|
|
|
<if test="operationStatus != null">#{operationStatus},</if>
|
|
|
+ <if test="exceptionLog != null">#{exceptionLog},</if>
|
|
|
</trim>
|
|
|
</insert>
|
|
|
|