insert into mall_goods_transport_info(
`transport_type`,
`transport_tool`,
`third_merch_sn`,
`way_status`,
`origin`,
`destination`,
`start_time`,
`arrival_time`,
`creater_sn`,
`create_time`,
`moder_sn`,
`mod_time`,
`tstm`)
values(
#{transportType},
#{transportTool},
#{thirdMerchSn},
#{wayStatus},
#{origin},
#{destination},
#{startTime},
#{arrivalTime},
#{createrSn},
#{createTime},
#{moderSn},
#{modTime},
#{tstm})
update mall_goods_transport_info
`transport_type` = #{transportType},
`transport_tool` = #{transportTool},
`third_merch_sn` = #{thirdMerchSn},
`way_status` = #{wayStatus},
`origin` = #{origin},
`destination` = #{destination},
`start_time` = #{startTime},
`arrival_time` = #{arrivalTime},
`creater_sn` = #{createrSn},
`create_time` = #{createTime},
`moder_sn` = #{moderSn},
`mod_time` = #{modTime},
`tstm` = #{tstm}
where trans_id = #{transId}
delete from mall_goods_transport_info where trans_id = #{value}
delete from mall_goods_transport_info where trans_id in
#{transId}