|
|
@@ -45,23 +45,25 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
insert into sop_order_log
|
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
<if test="sopId != null">sop_id,</if>
|
|
|
- <if test="fsUserId != null">fs_user_id,</if>
|
|
|
+ <if test="exId != null">ex_id,</if>
|
|
|
<if test="isBuy != null">is_buy,</if>
|
|
|
<if test="orderSendType != null">order_send_type,</if>
|
|
|
<if test="crateTime != null">crate_time,</if>
|
|
|
<if test="updateTime != null">update_time,</if>
|
|
|
<if test="sendTime != null">send_time,</if>
|
|
|
<if test="status != null">status,</if>
|
|
|
+ <if test="companyUserId != null">company_user_id,</if>
|
|
|
</trim>
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
<if test="sopId != null">#{sopId},</if>
|
|
|
- <if test="fsUserId != null">#{fsUserId},</if>
|
|
|
+ <if test="exId != null">#{exId},</if>
|
|
|
<if test="isBuy != null">#{isBuy},</if>
|
|
|
<if test="orderSendType != null">#{orderSendType},</if>
|
|
|
<if test="crateTime != null">#{crateTime},</if>
|
|
|
<if test="updateTime != null">#{updateTime},</if>
|
|
|
<if test="sendTime != null">#{sendTime},</if>
|
|
|
<if test="status != null">#{status},</if>
|
|
|
+ <if test="companyUserId != null">#{companyUserId},</if>
|
|
|
</trim>
|
|
|
</insert>
|
|
|
|