| | |
| | | <if test="quantity != null">quantity,</if> |
| | | <if test="totalAmount != null">total_amount,</if> |
| | | <if test="remark != null">remark,</if> |
| | | <if test="pid != null">pid,</if> |
| | | <if test="syncStatus != null">sync_status,</if> |
| | | <if test="syncTime != null">sync_time,</if> |
| | | <if test="createdBy != null and createdBy != ''">created_by,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | |
| | | <if test="quantity != null">#{quantity},</if> |
| | | <if test="totalAmount != null">#{totalAmount},</if> |
| | | <if test="remark != null">#{remark},</if> |
| | | <if test="pid != null">#{pid},</if> |
| | | <if test="syncStatus != null">#{syncStatus},</if> |
| | | <if test="syncTime != null">#{syncTime},</if> |
| | | <if test="createdBy != null and createdBy != ''">#{createdBy},</if> |
| | | </trim> |
| | | </insert> |